2020-02-10 08:24:30 +01:00
|
|
|
name: Build/release
|
|
|
|
|
2021-02-09 12:08:00 +01:00
|
|
|
on:
|
|
|
|
push:
|
2021-02-19 15:55:30 +01:00
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
schedule:
|
|
|
|
- cron: '0 10 * * 0'
|
2021-04-05 07:49:25 +02:00
|
|
|
workflow_dispatch:
|
2021-02-19 15:55:30 +01:00
|
|
|
|
2020-02-10 08:24:30 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
2020-03-31 20:17:38 +02:00
|
|
|
env:
|
|
|
|
is_tag: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
2020-03-31 15:04:52 +02:00
|
|
|
|
2020-02-10 08:24:30 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-03-31 13:59:05 +02:00
|
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
|
|
# os: [windows-latest]
|
2020-02-10 08:24:30 +01:00
|
|
|
|
|
|
|
steps:
|
2021-04-05 07:36:08 +02:00
|
|
|
# Windows fix. See https://github.com/actions/checkout/issues/226
|
|
|
|
- run: git config --global core.autocrlf false
|
|
|
|
|
2020-02-10 08:24:30 +01:00
|
|
|
- name: Check out Git repository
|
2021-01-26 12:22:02 +01:00
|
|
|
uses: actions/checkout@v2
|
2020-02-10 08:24:30 +01:00
|
|
|
|
|
|
|
- name: Install Node.js, NPM and Yarn
|
2021-01-26 12:22:02 +01:00
|
|
|
uses: actions/setup-node@v2
|
2020-02-10 08:24:30 +01:00
|
|
|
with:
|
2021-11-14 14:55:12 +01:00
|
|
|
node-version: 16
|
|
|
|
cache: 'yarn'
|
2020-02-10 08:24:30 +01:00
|
|
|
|
2020-04-02 19:17:50 +02:00
|
|
|
# Because of timeout issue https://github.com/yarnpkg/yarn/issues/4890
|
2021-02-19 13:43:48 +01:00
|
|
|
- run: yarn install --network-timeout 1000000
|
2020-04-02 18:48:28 +02:00
|
|
|
|
2020-03-31 07:11:55 +02:00
|
|
|
- name: Install and login to Snapcraft
|
2020-03-29 12:04:12 +02:00
|
|
|
uses: samuelmeuli/action-snapcraft@v1
|
2020-03-29 12:05:47 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2020-03-29 12:04:12 +02:00
|
|
|
with:
|
2020-03-29 12:05:47 +02:00
|
|
|
# Log in to Snap Store
|
2020-03-29 12:04:12 +02:00
|
|
|
snapcraft_token: ${{ secrets.snapcraft_token }}
|
|
|
|
|
2021-03-27 15:21:11 +01:00
|
|
|
- name: Prepare Apple API key
|
|
|
|
# Import Apple API key for app notarization on macOS and for uploading to Mac App Store
|
|
|
|
# 'altool --help': '--apiKey' will search the following directories in sequence for a private key file with the name of:
|
|
|
|
# 'AuthKey_<api_key>.p8': './private_keys', '~/private_keys', '~/.private_keys', and '~/.appstoreconnect/private_keys'.
|
2020-02-10 08:24:30 +01:00
|
|
|
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
|
2020-02-10 08:24:30 +01:00
|
|
|
|
2021-11-13 12:26:32 +01:00
|
|
|
- name: Download ffmpeg for Mac
|
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
|
2021-11-13 12:26:32 +01:00
|
|
|
|
|
|
|
- name: Download ffmpeg for Windows
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
2022-11-23 04:43:58 +01:00
|
|
|
run: yarn download-ffmpeg-win32-x64
|
2021-11-13 12:26:32 +01:00
|
|
|
|
|
|
|
- name: Download ffmpeg for Linux
|
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
|
|
|
|
2020-02-10 08:24:30 +01: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' }}
|
2020-02-10 08:24:30 +01:00
|
|
|
|
2021-01-25 12:00:11 +01:00
|
|
|
max_attempts: 2
|
|
|
|
|
2020-02-10 08:24:30 +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 }}
|
2020-02-10 08:24:30 +01:00
|
|
|
env:
|
|
|
|
# macOS notarization API key
|
|
|
|
API_KEY_ID: ${{ secrets.api_key_id }}
|
|
|
|
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
|
2020-03-31 07:11:55 +02:00
|
|
|
|
|
|
|
- name: Upload to Mac App Store
|
2020-03-31 20:17:38 +02:00
|
|
|
if: startsWith(matrix.os, 'macos') && env.is_tag == 'true'
|
2020-03-31 07:11:55 +02:00
|
|
|
run: |
|
2022-11-23 04:43:58 +01:00
|
|
|
node script/xcrun-wrapper.mjs dist/mas/LosslessCut-mac-universal.pkg ${{ secrets.api_key_id }} ${{ secrets.api_key_issuer_id }} 1505323402 no.mifi.losslesscut-mac
|