fix(release): fix missing echo on read

This commit is contained in:
Jguer 2020-01-12 18:22:55 +01:00
parent 4da27c37c8
commit e9930b0c42
No known key found for this signature in database
GPG key ID: 6D6CC9BEA8556B35

View file

@ -44,7 +44,7 @@ jobs:
id: tags
shell: bash
run: |
`: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
@ -72,9 +72,9 @@ jobs:
id: tags
shell: bash
run: |
`:set-output name=VERSION::$(cat env/new_version)`
`:set-output name=TAG::$(cat env/new_tag)`
`: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 }}