Skip to content

Commit

Permalink
Merge pull request #5893 from tharindu-nw/rel-artifacts-fix
Browse files Browse the repository at this point in the history
[2201.11.x] Fix variable references in publish release artifact workflow steps
  • Loading branch information
chiranSachintha authored Dec 11, 2024
2 parents f8ca29e + 2e76f21 commit f999151
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/publish-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:
echo "::set-output name=version::$VERSION"
echo "::set-output name=taggedVersion::$TAGGED_VERSION"
echo "::set-output name=updateNumber::$UPDATE_NUMBER"
echo "::set-output name=longVersion::$LONG_VERSION"
- name: Download artifacts
run: |
Expand Down Expand Up @@ -141,19 +142,20 @@ jobs:
with:
context: ${{ steps.process-docker.outputs.dockerRepo }}/base/docker/
push: true
tags: ballerina/ballerina:$GIT_TAG
tags: ballerina/ballerina:${{ steps.set-version.outputs.taggedVersion }}
platforms: linux/amd64,linux/arm64
build-args: |
BALLERINA_DIST=ballerina-$VERSION.zip
BALLERINA_DIST=ballerina-${{ steps.set-version.outputs.version }}.zip
- name: Build and push dev container image
id: docker_build_devcontainer
uses: docker/build-push-action@v6
with:
context: ${{ steps.process-docker.outputs.dockerRepo }}/base/devcontainer/
push: true
tags: ballerina/ballerina-devcontainer:$GIT_TAG
tags: ballerina/ballerina-devcontainer:${{ steps.set-version.outputs.taggedVersion }}
build-args: |
BALLERINA_DIST=ballerina-$LONG_VERSION-linux-x64.deb
BALLERINA_DIST=ballerina-${{ steps.set-version.outputs.longVersion }}-linux-x64.deb
- name: Publish Artifacts
run: |
Expand Down

0 comments on commit f999151

Please sign in to comment.