Skip to content

Commit

Permalink
fix(release): fix multiline command
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguer committed Jan 12, 2020
1 parent e9930b0 commit 9458e02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-multiarch-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: tags
shell: bash
run: |
`echo ::set-output name=VERSION::$(cat env/new_version)`
echo ::set-output name=VERSION::$(cat env/new_version)
- name: Install dependencies
run: sudo apt update -y && sudo apt install -y qemu qemu-user-static
- name: Setup qemu-user-static
Expand Down Expand Up @@ -72,9 +72,9 @@ jobs:
id: tags
shell: bash
run: |
`echo ::set-output name=VERSION::$(cat env/new_version)`
`echo ::set-output name=TAG::$(cat env/new_tag)`
`echo ::set-output name=PREV_TAG::$(cat env/previous_tag)`
echo ::set-output name=VERSION::$(cat env/new_version)
echo ::set-output name=TAG::$(cat env/new_tag)
echo ::set-output name=PREV_TAG::$(cat env/previous_tag)
- name: Set version
id: changelog
run: ./testdata/ci/changelog.sh ${{ steps.tags.outputs.previous_tag }} ${{ steps.tags.outputs.new_tag }}
Expand Down

0 comments on commit 9458e02

Please sign in to comment.