WORKFLOW: fixed version reader

This commit is contained in:
Xargon 2022-05-21 09:35:22 +09:00
parent eddfd1d757
commit d91e3153ea

View file

@ -117,14 +117,14 @@ jobs:
# run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" # run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
# id: extract_branch # id: extract_branch
- name: Generate tag - name: Read version from version file
id: tag id: version
run: "##[set-output name=tag;]echo $(flatpak run net.retrodeck.retrodeck -v)" run: "##[set-output name=version;]cat $(find . -name version)"
- name: Publish the flatpak in a new cooker release - name: Publish the flatpak in a new cooker release
uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
with: with:
tag: "${{ steps.tag.outputs.tag }}" tag: "${{ steps.version.outputs.version }}"
body: | body: |
# Release Notes (Cooker) # Release Notes (Cooker)
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}. This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.