Merge pull request #734 from losnoco/kode54-fix-gha

Fix CI version strings in Win32 and Ubuntu builds
This commit is contained in:
Christopher Snowhill 2020-10-18 18:41:45 -07:00 committed by GitHub
commit de953729a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -17,6 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Fetch Git Tags
run: |
git fetch --prune --unshallow --tags
- name: Install Dependencies
run: |
sudo apt-get update
@ -75,4 +79,4 @@ jobs:
aws s3 cp cli/vgmstream-cli.tar.gz s3://vgmstream-builds/${{github.sha}}/linux/vgmstream-cli.tar.gz --acl public-read
aws s3 cp audacious/vgmstream-audacious.tar.gz s3://vgmstream-builds/${{github.sha}}/linux/vgmstream-audacious.tar.gz --acl public-read
echo ${{github.sha}} > latest_id
aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read
aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read

View File

@ -17,6 +17,10 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Fetch Git tags
shell: cmd
run: git fetch --prune --unshallow --tags
- name: Initialize Build Environment
shell: cmd
@ -114,4 +118,4 @@ jobs:
aws s3 cp Release\test.pdb.zip s3://vgmstream-builds/${{github.sha}}/windows/ --acl public-read
aws s3 cp Release\foo_input_vgmstream.pdb.zip s3://vgmstream-builds/${{github.sha}}/windows/ --acl public-read
echo ${{github.sha}} > latest_id
aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read
aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read