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:
|
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
|
|
|
|
2020-02-10 08:24:30 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-12-10 05:49:49 +01:00
|
|
|
timeout-minutes: 60
|
2020-02-10 08:24:30 +01:00
|
|
|
|
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
|
|
|
|
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
|
2024-07-29 11:26:19 +02:00
|
|
|
uses: actions/checkout@v4
|
2020-02-10 08:24:30 +01:00
|
|
|
|
|
|
|
- name: Install Node.js, NPM and Yarn
|
2024-07-29 11:26:19 +02:00
|
|
|
uses: actions/setup-node@v4
|
2020-02-10 08:24:30 +01:00
|
|
|
with:
|
2023-12-10 05:25:53 +01:00
|
|
|
node-version: 20
|
2021-11-14 14:55:12 +01:00
|
|
|
cache: 'yarn'
|
2020-02-10 08:24:30 +01:00
|
|
|
|
2024-09-01 14:58:03 +02:00
|
|
|
# This global ffmpeg is used for screenshots (see below)
|
|
|
|
- uses: FedericoCarboni/setup-ffmpeg@v3
|
|
|
|
with:
|
|
|
|
ffmpeg-version: release
|
|
|
|
# arm not yet supported on macos
|
|
|
|
architecture: ${{ matrix.os == 'macos-latest' && 'x64' || '' }}
|
|
|
|
# Linking type of the binaries. Use "shared" to download shared binaries and
|
|
|
|
# "static" for statically linked ones. Shared builds are currently only available
|
|
|
|
# for windows releases. Defaults to "static"
|
|
|
|
linking-type: static
|
|
|
|
# As of version 3 of this action, builds are no longer downloaded from GitHub
|
|
|
|
# except on Windows: https://github.com/GyanD/codexffmpeg/releases.
|
|
|
|
github-token: ${{ github.server_url == 'https://github.com' && github.token || '' }}
|
|
|
|
|
|
|
|
- run: ffmpeg -version
|
|
|
|
|
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
|
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
|
|
|
|
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
|
2021-11-13 12:26:32 +01:00
|
|
|
|
2023-12-10 05:26:35 +01:00
|
|
|
- name: (Windows) Download ffmpeg
|
2021-11-13 12:26:32 +01:00
|
|
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2023-10-19 12:04:57 +02:00
|
|
|
max_attempts: 1
|
2021-01-25 12:00:11 +01:00
|
|
|
|
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:
|
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 }}
|
2020-03-31 07:11:55 +02:00
|
|
|
|
2024-09-01 14:58:03 +02:00
|
|
|
- run: npx tsx script/e2e.mts 'dist/mac-arm64/LosslessCut.app/Contents/MacOS/LosslessCut' screenshot-macos.jpeg
|
|
|
|
if: startsWith(matrix.os, 'macos')
|
2024-09-01 14:59:35 +02:00
|
|
|
|
2024-09-01 14:58:03 +02:00
|
|
|
- run: npx tsx script/e2e.mts 'dist/win-x64/LosslessCut.app/Contents/MacOS/LosslessCut' screenshot-windows.jpeg
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
2024-09-01 14:59:35 +02:00
|
|
|
|
2024-09-01 14:58:03 +02:00
|
|
|
- run: |
|
|
|
|
export DISPLAY=:0
|
|
|
|
sudo Xvfb -ac :0 -screen 0 1280x1024x24 > /dev/null 2>&1 &
|
|
|
|
sleep 1
|
|
|
|
npx tsx script/e2e.mts 'dist/linux-x64/LosslessCut.app/Contents/MacOS/LosslessCut' screenshot-linux.jpeg
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
|
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'
|
2020-03-31 07:11:55 +02:00
|
|
|
run: |
|
2024-03-21 16:28:25 +01:00
|
|
|
npx tsx script/xcrun-wrapper.mts 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
|
2024-09-01 14:58:03 +02:00
|
|
|
screenshot-macos.jpeg
|
2023-03-02 14:23:30 +01:00
|
|
|
|
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
|
2024-09-01 14:58:03 +02:00
|
|
|
screenshot-windows.jpeg
|
2023-03-02 14:23:30 +01:00
|
|
|
|
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
|
2024-09-01 14:58:03 +02:00
|
|
|
screenshot-linux.jpeg
|
2023-03-02 14:23:30 +01:00
|
|
|
|