1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00
lossless-cut/.github/workflows/build.yml

130 lines
4.3 KiB
YAML
Raw Normal View History

name: Build/release
2021-02-09 12:08:00 +01:00
on:
push:
2021-02-19 15:55:30 +01:00
tags:
- 'v*'
schedule:
2023-03-02 14:23:30 +01:00
- cron: '0 10 * * *'
2021-04-05 07:49:25 +02:00
workflow_dispatch:
2021-02-19 15:55:30 +01:00
jobs:
release:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
2020-03-31 20:17:38 +02:00
env:
is_tag: ${{ startsWith(github.ref, 'refs/tags/v') }}
2023-03-30 18:14:16 +02:00
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}
2020-03-31 15:04:52 +02:00
strategy:
matrix:
2020-03-31 13:59:05 +02:00
os: [macos-latest, ubuntu-latest, windows-latest]
# os: [windows-latest]
steps:
# Windows fix. See https://github.com/actions/checkout/issues/226
- run: git config --global core.autocrlf false
- name: Check out Git repository
2023-03-02 15:02:59 +01:00
uses: actions/checkout@v3
- name: Install Node.js, NPM and Yarn
2023-03-02 15:02:59 +01:00
uses: actions/setup-node@v3
with:
2023-12-10 05:25:53 +01:00
node-version: 20
2021-11-14 14:55:12 +01:00
cache: 'yarn'
2020-04-02 19:17:50 +02:00
# Because of timeout issue https://github.com/yarnpkg/yarn/issues/4890
2023-12-10 05:25:18 +01:00
- run: yarn install --immutable --network-timeout 1000000
2020-04-02 18:48:28 +02:00
2023-12-10 05:26:35 +01:00
- name: (Linux) Install and login to Snapcraft
2023-03-30 18:14:16 +02:00
uses: samuelmeuli/action-snapcraft@v2
2020-03-29 12:05:47 +02:00
if: startsWith(matrix.os, 'ubuntu')
2020-03-29 12:04:12 +02:00
2022-11-23 07:23:06 +01:00
- name: Save provisioning profile
if: startsWith(matrix.os, 'macos')
env:
PROVISIONING_PROFILE_BASE64: ${{ secrets.PROVISIONING_PROFILE_BASE64 }}
run: |
echo -n "$PROVISIONING_PROFILE_BASE64" | base64 --decode > LosslessCut_Mac_App_Store_provisioning_profile.provisionprofile
2023-12-10 05:26:35 +01:00
- name: (MacOS) Prepare Apple API key
2023-11-02 02:02:05 +01:00
# Import Apple API key for uploading to Mac App Store and for notarization
if: startsWith(matrix.os, 'macos')
run: |
2021-03-27 15:21:11 +01:00
mkdir -p ~/.appstoreconnect/private_keys/
echo '${{ secrets.api_key }}' > ~/.appstoreconnect/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
2023-12-10 05:26:35 +01:00
- name: (MacOS) Download ffmpeg
2020-03-31 20:17:38 +02:00
if: startsWith(matrix.os, 'macos')
2022-11-23 04:43:58 +01:00
run: |
yarn download-ffmpeg-darwin-x64
yarn download-ffmpeg-darwin-arm64
2023-12-10 05:26:35 +01:00
- name: (Windows) Download ffmpeg
if: startsWith(matrix.os, 'windows')
2022-11-23 04:43:58 +01:00
run: yarn download-ffmpeg-win32-x64
2023-12-10 05:26:35 +01:00
- name: (Linux) Download ffmpeg
2022-01-17 04:51:05 +01:00
if: startsWith(matrix.os, 'ubuntu')
2022-11-23 04:43:58 +01:00
run: yarn download-ffmpeg-linux-x64
2020-03-31 20:17:38 +02:00
- name: Build/release Electron app
uses: samuelmeuli/action-electron-builder@v1
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
github_token: ${{ secrets.github_token }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
2020-03-31 20:17:38 +02:00
release: ${{ env.is_tag == 'true' }}
2023-10-19 12:04:57 +02:00
max_attempts: 1
2021-01-25 12:00:11 +01:00
mac_certs: ${{ secrets.mac_certs }}
mac_certs_password: ${{ secrets.mac_certs_password }}
2020-03-29 13:35:52 +02:00
2020-03-31 09:37:23 +02:00
# Temporary 30 day certificate, not needed for Microsoft Store
# windows_certs: ${{ secrets.windows_certs }}
# windows_certs_password: ${{ secrets.windows_certs_password }}
env:
2023-11-01 12:38:24 +01:00
APPLE_API_KEY: ~/.appstoreconnect/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
2023-11-01 10:17:11 +01:00
APPLE_API_KEY_ID: ${{ secrets.api_key_id }}
2023-11-01 12:56:45 +01:00
APPLE_API_ISSUER: ${{ secrets.api_key_issuer_id }}
2023-12-10 05:26:35 +01:00
- name: (MacOS) Upload to Mac App Store
2020-03-31 20:17:38 +02:00
if: startsWith(matrix.os, 'macos') && env.is_tag == 'true'
run: |
2022-11-23 05:35:58 +01:00
node script/xcrun-wrapper.mjs dist/mas-universal/LosslessCut-mac-universal.pkg ${{ secrets.api_key_id }} ${{ secrets.api_key_issuer_id }} 1505323402 no.mifi.losslesscut-mac
2023-03-02 14:23:30 +01:00
2023-12-10 05:26:35 +01:00
- name: (MacOS) Upload artifacts
uses: actions/upload-artifact@v3
2023-03-02 14:23:30 +01:00
if: startsWith(matrix.os, 'macos') && env.is_tag == 'false'
with:
name: MacOS
path: |
dist/LosslessCut-mac-arm64.dmg
dist/LosslessCut-mac-x64.dmg
2023-12-10 05:26:35 +01:00
- name: (Windows) Upload artifacts
uses: actions/upload-artifact@v3
2023-03-02 14:23:30 +01:00
if: startsWith(matrix.os, 'windows') && env.is_tag == 'false'
with:
name: Windows
path: |
dist/LosslessCut-win-x64.7z
2023-12-10 05:26:35 +01:00
- name: (Linux) Upload artifacts
uses: actions/upload-artifact@v3
2023-03-02 14:23:30 +01:00
if: startsWith(matrix.os, 'ubuntu') && env.is_tag == 'false'
with:
name: Linux
path: |
dist/LosslessCut-linux-arm64.tar.bz2
dist/LosslessCut-linux-armv7l.tar.bz2
dist/LosslessCut-linux-x64.tar.bz2