Skip to content

Commit

Permalink
ci: use right s3 target for client upload
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Jan 17, 2024
1 parent ba4f9e3 commit 1f67f4f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,14 @@ jobs:
id: version
if: startsWith(github.ref, 'refs/tags/')
run: |
aws s3 sync dist/ s3://dl.webhippie.de/minecraft/boergers/${{ github.ref_name }}/
aws s3 cp *.mrpack s3://dl.webhippie.de/minecraft/boergers/${{ github.ref_name }}/
aws s3 cp *.mrpack.sha256 s3://dl.webhippie.de/minecraft/boergers/${{ github.ref_name }}/
- name: Upload testing
id: testing
if: startsWith(github.ref, 'refs/heads/')
run: |
aws s3 sync dist/ s3://dl.webhippie.de/minecraft/boergers/testing/
aws s3 cp *.mrpack s3://dl.webhippie.de/minecraft/boergers/testing/
aws s3 cp *.mrpack.sha256 s3://dl.webhippie.de/minecraft/boergers/testing/
...

0 comments on commit 1f67f4f

Please sign in to comment.