Skip to content

Commit

Permalink
CI tagging fix (#414)
Browse files Browse the repository at this point in the history
* CI tagging fix

Signed-off-by: Woojoong Kim <[email protected]>

* CI tagging fix

Signed-off-by: Woojoong Kim <[email protected]>

---------

Signed-off-by: Woojoong Kim <[email protected]>
  • Loading branch information
woojoong88 authored Jul 2, 2024
1 parent 51f0b6b commit 1afc9c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
for sm in $(find servicemodels -name go.mod)
do
chart_dir=$(dirname $sm)
$tag_name=$(echo $chart_dir/v${{ needs.version-check.outputs.target_version }})
tag_name=$(echo $chart_dir/v${{ needs.version-check.outputs.target_version }})
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
Expand Down Expand Up @@ -95,15 +95,15 @@ jobs:
env:
DOCKER_TAG: latest
run: |
ONOS_O1T_VERSION=${{ env.DOCKER_TAG }} make docker-build
ONOS_O1T_VERSION=${{ env.DOCKER_TAG }} make docker-push
ONOS_E2_SM_VERSION=${{ env.DOCKER_TAG }} make docker-build
ONOS_E2_SM_VERSION=${{ env.DOCKER_TAG }} make docker-push
- name: Build and push Docker image with tag
if: needs.version-check.outputs.dev_version == 'false'
env:
DOCKER_TAG: v${{ needs.version-check.outputs.target_version }}
run: |
ONOS_O1T_VERSION=${{ env.DOCKER_TAG }} make docker-build
ONOS_O1T_VERSION=${{ env.DOCKER_TAG }} make docker-push
ONOS_E2_SM_VERSION=${{ env.DOCKER_TAG }} make docker-build
ONOS_E2_SM_VERSION=${{ env.DOCKER_TAG }} make docker-push
bump-up-version:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.45-dev
0.8.45

0 comments on commit 1afc9c9

Please sign in to comment.