From e545bfdaae78ed042dcf99950430505b22eed41e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20L=C3=B3pez=20Brante?= Date: Mon, 5 Oct 2020 04:37:30 -0300 Subject: [PATCH] Added generation of "latest" sigil file --- .github/workflows/cmake-lx.yml | 4 ++-- .github/workflows/vs-win.yml | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cmake-lx.yml b/.github/workflows/cmake-lx.yml index 4d252783..58f94352 100644 --- a/.github/workflows/cmake-lx.yml +++ b/.github/workflows/cmake-lx.yml @@ -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 \ No newline at end of file + echo ${{github.sha}} > latest_id + aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read \ No newline at end of file diff --git a/.github/workflows/vs-win.yml b/.github/workflows/vs-win.yml index f3e0f7cb..251ab08b 100644 --- a/.github/workflows/vs-win.yml +++ b/.github/workflows/vs-win.yml @@ -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 \ No newline at end of file + echo ${{github.sha}} > latest_id + aws s3 cp latest_id s3://vgmstream-builds/ --acl public-read \ No newline at end of file