Skip to content

Commit

Permalink
add workflow for Windows/Arm daily build
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Jun 28, 2024
1 parent 5fa832b commit f829e1e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-windows_arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: build-shotcut-windows-arm64

on:
workflow_dispatch:
schedule:
# nightly
- cron: '0 12 * * *'

jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'mltframework' }}
steps:
- name: Download from S3
run: |
VERSION=$(date +"%y%m%d")
echo VERSION=$VERSION
sudo apt install -yqq s3cmd
s3cmd --access_key=${{ secrets.AWS_ACCESS_KEY }} --secret_key=${{ secrets.AWS_SECRET_KEY }} --stop-on-error get s3://builds.us.meltytech/shotcut-build-win_arm.txt.xz
s3cmd --access_key=${{ secrets.AWS_ACCESS_KEY }} --secret_key=${{ secrets.AWS_SECRET_KEY }} --stop-on-error get s3://builds.us.meltytech/shotcut/shotcut-win_ARM-$VERSION.zip
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: portable
path: |
*.zip
- name: Dump log
run: xzcat shotcut-build-win_arm.txt.xz

0 comments on commit f829e1e

Please sign in to comment.