Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Murmele committed Jan 27, 2023
1 parent 42119ea commit 05d4768
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ jobs:

- name: Test
if: matrix.env.ninja_platform != 'win' && matrix.env.ninja_platform != 'mac'
uses: GabrielBB/xvfb-action@v1
uses: GabrielBB/xvfb-action@v1.6
with:
working-directory: build/release
run: ninja check
Expand Down Expand Up @@ -347,8 +347,12 @@ jobs:
# version is exported from cmake to file
- name: Retrieve version
run: |
echo "::set-output name=VERSION::$(cat artifacts/Gittyup-VERSION/VERSION.txt)"
id: version
VER=$(cat artifacts/Gittyup-VERSION/VERSION.txt)
echo "VERSION=$VER" >> $GITHUB_ENV
- name: Print version
run: |
echo ${{ env.VERSION }}
- name: Update GitHub release (latest tag)
uses: marvinpinto/action-automatic-releases@latest
Expand All @@ -370,7 +374,7 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
title: Gittyup Release ${{ steps.version.outputs.VERSION }}
title: Gittyup Release ${{ env.VERSION }}
automatic_release_tag: ${{ github.ref_name }}
files: |
**/artifacts/Gittyup win64/Gittyup*.exe
Expand Down

0 comments on commit 05d4768

Please sign in to comment.