mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
parent
5e6c717361
commit
485434ec0d
1 changed files with 14 additions and 1 deletions
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
|
@ -144,3 +144,16 @@ jobs:
|
||||||
aws cloudfront create-invalidation \
|
aws cloudfront create-invalidation \
|
||||||
--distribution-id ${{ secrets.AWS_CF_GUI_RELEASE_ID }} \
|
--distribution-id ${{ secrets.AWS_CF_GUI_RELEASE_ID }} \
|
||||||
--paths '/*'
|
--paths '/*'
|
||||||
|
- name: Upload ARM64 DMG files to release
|
||||||
|
uses: actions/github-release@v1
|
||||||
|
with:
|
||||||
|
args: upload-release-asset --owner ${{ github.repository_owner }} --repo ${{ github.repository }} --tag ${{ github.ref }} --name ${{ steps.app_files.outputs.dmg_arm64 }} --file dist/${{ steps.app_files.outputs.dmg_arm64 }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Upload X86 DMG files to release
|
||||||
|
uses: actions/github-release@v1
|
||||||
|
with:
|
||||||
|
args: upload-release-asset --owner ${{ github.repository_owner }} --repo ${{ github.repository }} --tag ${{ github.ref }} --name ${{ steps.app_files.outputs.dmg_x86 }} --file dist/${{ steps.app_files.outputs.dmg_x86 }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue