Skip to content

Commit

Permalink
fix(release): fix missing echo
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguer committed Jan 12, 2020
1 parent a0d8311 commit 66a09ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-multiarch-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: 'v'
- shell: bash
run: ${{ steps.tag_version.outputs.new_version }} > new_version.
run: echo ${{ steps.tag_version.outputs.new_version }} > new_version.
- shell: bash
run: ${{ steps.tag_version.outputs.new_tag }} > new_tag.
run: echo ${{ steps.tag_version.outputs.new_tag }} > new_tag.
- shell: bash
run: ${{ steps.tag_version.outputs.previous_tag }} > previous_tag.
run: echo ${{ steps.tag_version.outputs.previous_tag }} > previous_tag.
- uses: actions/upload-artifact@v1
with:
name: new_version
Expand Down

0 comments on commit 66a09ab

Please sign in to comment.