You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
YAML
50 lines
1.7 KiB
YAML
# This script will build binaries and publish a draft on github release page with the the tag v[package-version]
|
|
name: Session Draft Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
# We want a mac arm64 build, and according to this https://github.com/actions/runner-images#available-images macos-14 is always arm64
|
|
os: [windows-2022, ubuntu-20.04, macos-12, macos-14]
|
|
env:
|
|
SIGNAL_ENV: production
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- run: git config --global core.autocrlf false
|
|
|
|
- name: Checkout git repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup & Build
|
|
uses: ./actions/setup_and_build
|
|
|
|
- name: Build windows production binaries
|
|
if: runner.os == 'Windows'
|
|
run: node_modules\.bin\electron-builder --config.extraMetadata.environment=%SIGNAL_ENV% --publish=always
|
|
|
|
- name: Build mac production binaries
|
|
if: runner.os == 'macOS'
|
|
run: |
|
|
source ./build/setup-mac-certificate.sh
|
|
$(yarn bin)/electron-builder --config.extraMetadata.environment=$SIGNAL_ENV --config.mac.bundleVersion=${{ github.ref }} --publish=always
|
|
env:
|
|
MAC_CERTIFICATE: ${{ secrets.MAC_CERTIFICATE }}
|
|
MAC_CERTIFICATE_PASSWORD: ${{ secrets.MAC_CERTIFICATE_PASSWORD }}
|
|
SIGNING_APPLE_ID: ${{ secrets.SIGNING_APPLE_ID }}
|
|
SIGNING_APP_PASSWORD: ${{ secrets.SIGNING_APP_PASSWORD }}
|
|
SIGNING_TEAM_ID: ${{ secrets.SIGNING_TEAM_ID }}
|
|
|
|
- name: Build linux production binaries
|
|
if: runner.os == 'Linux'
|
|
run: |
|
|
sudo apt-get install -y rpm
|
|
yarn build-release-publish
|