Skip to content

Update version (#162) #107

Update version (#162)

Update version (#162) #107

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Intel Corporation
on:
push:
branches:
- main
paths:
- "VERSION"
jobs:
tag-github:
uses: omec-project/.github/.github/workflows/tag-github.yml@main
secrets: inherit
release-image:
needs: tag-github
uses: omec-project/.github/.github/workflows/release-image.yml@main
with:
changed: ${{ needs.tag-github.outputs.changed }}
version: ${{ needs.tag-github.outputs.version }}
secrets: inherit
update-version:
needs: tag-github
uses: omec-project/.github/.github/workflows/update-version.yml@main
with:
changed: ${{ needs.tag-github.outputs.changed }}
version: ${{ needs.tag-github.outputs.version }}
secrets: inherit
branch-release:
needs: tag-github
uses: omec-project/.github/.github/workflows/branch-release.yml@main
with:
release_branch: ${{ needs.tag-github.outputs.release_branch }}
version_branch: ${{ needs.tag-github.outputs.version_branch }}
secrets: inherit