Skip to content

Commit

Permalink
chore: fix typo in workflow (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
talalashraf authored Aug 27, 2021
1 parent 20dbf55 commit 86bd1f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-docker-image-and-binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
run: |
make build-push-docker-images
env:
SEMVER: ${{ steps.release.outputs.new_tag }}
SEMVER: $${{ github.event.inputs.tag }}

- name: Build Binaries for Linux/MacOS
env:
SEMVER: ${{ steps.release.outputs.new_tag }}
SEMVER: $${{ github.event.inputs.tag }}
run: |
make build-binaries-in-docker
Expand All @@ -61,7 +61,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./bin/*
tag: ${{ steps.release.outputs.new_tag }}
tag: $${{ github.event.inputs.tag }}
overwrite: true
file_glob: true

Expand All @@ -74,6 +74,6 @@ jobs:

- name: Upload binaries to S3
env:
S3_PATH: s3://axelar-releases/axelard/${{ steps.release.outputs.new_tag }}
S3_PATH: s3://axelar-releases/axelard/${{ github.event.inputs.tag }}
run: |
aws s3 cp ./bin ${S3_PATH}/ --recursive

0 comments on commit 86bd1f2

Please sign in to comment.