Added generation of "latest" sigil file

This commit is contained in:
Kevin López Brante 2020-10-05 04:37:30 -03:00
parent 8b0ecdd14d
commit e545bfdaae
2 changed files with 4 additions and 7 deletions

View File

@ -72,6 +72,6 @@ jobs:
tar cvfz vgmstream-audacious.tar.gz vgmstream.so
cd ..
aws s3 cp cli/vgmstream-cli.tar.gz s3://vgmstream-builds/${{github.sha}}/linux/vgmstream-cli.tar.gz --acl public-read
aws s3 cp cli/vgmstream-cli.tar.gz s3://vgmstream-builds/latest/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
aws s3 cp audacious/vgmstream-audacious.tar.gz s3://vgmstream-builds/latest/linux/vgmstream-audacious.tar.gz --acl public-read
echo ${{github.sha}} > latest_id
aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read

View File

@ -116,8 +116,5 @@ jobs:
aws s3 cp Release\foo_input_vgmstream.fb2k-component s3://vgmstream-builds/${{github.sha}}/windows/ --acl public-read
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
aws s3 cp Release\test.zip s3://vgmstream-builds/latest/windows/ --acl public-read
aws s3 cp Release\foo_input_vgmstream.fb2k-component s3://vgmstream-builds/latest/windows/ --acl public-read
aws s3 cp Release\test.pdb.zip s3://vgmstream-builds/latest/windows/ --acl public-read
aws s3 cp Release\foo_input_vgmstream.pdb.zip s3://vgmstream-builds/latest/windows/ --acl public-read
echo ${{github.sha}} > latest_id
aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read