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

96 lines
3.2 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:
- cron: '0 10 * * 0'
2021-04-05 07:49:25 +02:00
workflow_dispatch:
2021-02-19 15:55: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
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
uses: actions/checkout@v2
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v2
with:
2021-11-14 14:55:12 +01:00
node-version: 16
cache: 'yarn'
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
- 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'.
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
- name: Download ffmpeg for Mac
2020-03-31 20:17:38 +02:00
if: startsWith(matrix.os, 'macos')
run: yarn download-ffmpeg-mac
- name: Download ffmpeg for Windows
if: startsWith(matrix.os, 'windows')
run: yarn download-ffmpeg-windows
- name: Download ffmpeg for Linux
2022-01-17 04:51:05 +01:00
if: startsWith(matrix.os, 'ubuntu')
run: yarn download-ffmpeg-linux
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' }}
2021-01-25 12:00:11 +01:00
max_attempts: 2
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:
# macOS notarization API key
API_KEY_ID: ${{ secrets.api_key_id }}
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
- name: Upload to Mac App Store
2020-03-31 20:17:38 +02:00
if: startsWith(matrix.os, 'macos') && env.is_tag == 'true'
run: |
2022-03-09 17:11:59 +01:00
node script/xcrun-wrapper.mjs dist/mas/LosslessCut-mac-x64.pkg ${{ secrets.api_key_id }} ${{ secrets.api_key_issuer_id }} 1505323402 no.mifi.losslesscut-mac