From b5e47ad9072bd69701918ce4c549ab90e6c961ef Mon Sep 17 00:00:00 2001 From: Georg Dahmen Date: Sat, 31 Jan 2026 16:31:38 +0100 Subject: [PATCH] Create build-macos-unstable.yml --- .github/workflows/build-macos-unstable.yml | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/build-macos-unstable.yml diff --git a/.github/workflows/build-macos-unstable.yml b/.github/workflows/build-macos-unstable.yml new file mode 100644 index 0000000..8713153 --- /dev/null +++ b/.github/workflows/build-macos-unstable.yml @@ -0,0 +1,30 @@ +name: build-shotcut-macos-unstable + +on: + workflow_dispatch: + schedule: + # nightly + - cron: '0 12 * * *' + +jobs: + build: + if: ${{ github.repository_owner == 'mltframework' }} + runs-on: ubuntu-latest + steps: + - name: Download from S3 + run: | + VERSION=$(date +"UNSTABLE-%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-macos-unstable.txt + s3cmd --access_key=${{ secrets.AWS_ACCESS_KEY }} --secret_key=${{ secrets.AWS_SECRET_KEY }} --stop-on-error get s3://builds.us.meltytech/shotcut/shotcut-macos-unsigned-$VERSION.dmg + + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: unsigned-dmg + path: | + *.dmg + + - name: Dump log + run: cat shotcut-build-macos-unstable.txt