mirror of
https://github.com/Stremio/stremio-shell-ng.git
synced 2026-03-11 21:27:06 +00:00
Fix aws
This commit is contained in:
parent
dd15b80f7b
commit
8ca233a994
1 changed files with 6 additions and 3 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
|
@ -1,6 +1,9 @@
|
|||
name: Build Installer
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
@ -31,9 +34,9 @@ jobs:
|
|||
|
||||
- name: Upload to Amazon S3
|
||||
run: |
|
||||
aws s3 cp --acl public-read StremioSetup*.exe s3://stremio-artifacts/stremio-shell-ng/${{ github.ref_name }}/
|
||||
aws s3 cp --acl public-read ".\StremioSetup-v$((get-item .\StremioSetup*.exe).VersionInfo.ProductVersion.Trim()).exe" s3://stremio-artifacts/stremio-shell-ng/${{ github.ref_name }}/
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: stremio-setup
|
||||
path: StremioSetup*.exe
|
||||
path: StremioSetup-v*.exe
|
||||
|
|
|
|||
Loading…
Reference in a new issue