mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-31 05:29:58 +01:00
a0a9ec830c
* Add way to provide apple ID and app password to notarise script * Add utility to generate electron-builder.json for release & nightly builds * Run Build & Test on staging too * First attempt at build & deploy for macOS with signing and notarisation * Fix quote mismatch * use correct quotes * add runs-on * Fix inputs.mode usage * remove quotes * chmod +x * Fix artifact paths * Fix deploy condition * Fix deploy condition * Fix artifact path * Iterate * Fix workflow * Fix env * Iterate * Fix missing env * Fix version calculation * Iterate * Fix config not taking effect * Update build_and_deploy.yaml * Fix alignments * delint * Fix alignment * Update build_macos.yaml * Add ability to EV sign using eSigner CKA * Initial work to build & sign Windows nightlies in CI * Format * Format * Fix gha * fix winSign * Fix install command * Add signtool to path * Update build_and_deploy.yaml * Fix quotes * Test * Fix comments * Fix cmd * Try again * arg slashes * Fix exe path * Fix matrix strategy * Use ampersand-call * fwd slash ftw? * ls * * 🌲 * tree dist * prepend path * Specify /fd and /td to modern signtool * /tr not /t for CKA * Test signing * missing comma * 🤦♂️ * Fix wrong mv * Lets sign * Fix config gen * Debug * Fix typo * Multiple drives why * Try NVL sandbox creds * Update * Attempt to disable logger * Try again * Iterate * Update build_macos.yaml * Update build_and_deploy.yaml * Update build_macos.yaml * Update build_and_deploy.yaml * Update build_and_deploy.yaml * Try custom build of eSigner CKA * Fix typos * Update build_windows.yaml * Update build_and_deploy.yaml * Update build_windows.yaml * Update build_and_deploy.yaml * Fix symlinking * Fix working-directory incantation * exe * remove debug * Prettier * Vendor check in SSL.com executable * Download CKA from packages.element.io instead * Use demo creds * StrictMode * Switch back to 0207 (unsigned) * Fix call syntax * Revert env inc * Partial rollback * Trace * Trace less * Fix CN being passed wrong * DEBUG * Debug 2 * Fix ConvertFrom-StringData * 0214 * Test * Test * Untested * Revert to 0207 * stash * Try with 20230221 * Restore scripts/electron_winSign.js * Prepare for merge * Update build_windows.yaml * Update build_and_deploy.yaml * Restore .github/workflows/build_and_deploy.yaml * Restore .github/workflows/build_and_deploy.yaml * Fix bad restore
142 lines
5.0 KiB
YAML
142 lines
5.0 KiB
YAML
name: Build and Deploy
|
|
on:
|
|
# Nightly build
|
|
schedule:
|
|
- cron: "0 9 * * *"
|
|
# Manual nightly & release
|
|
workflow_dispatch:
|
|
inputs:
|
|
mode:
|
|
description: What type of build to trigger. Release builds should be ran from the `master` branch.
|
|
required: true
|
|
default: nightly
|
|
type: choice
|
|
options:
|
|
- nightly
|
|
- release
|
|
macos:
|
|
description: Whether to build macOS
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
windows_32bit:
|
|
description: Whether to build Windows 32-bit
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
windows_64bit:
|
|
description: Whether to build Windows 64-bit
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
linux:
|
|
description: Whether to build Linux
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
deploy:
|
|
description: Whether to deploy artifacts
|
|
required: true
|
|
type: boolean
|
|
default: true
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
env:
|
|
# XXX: UPDATE THIS BEFORE WHEN GOING LIVE
|
|
R2_BUCKET: "packages-element-io-test"
|
|
jobs:
|
|
prepare:
|
|
uses: ./.github/workflows/build_prepare.yaml
|
|
with:
|
|
config: element.io/${{ inputs.mode || 'nightly' }}
|
|
version: ${{ inputs.mode == 'release' && '' || 'develop' }}
|
|
calculate-nightly-versions: ${{ inputs.mode != 'release' }}
|
|
secrets:
|
|
CF_R2_ACCESS_KEY_ID: ${{ secrets.CF_R2_ACCESS_KEY_ID }}
|
|
CF_R2_TOKEN: ${{ secrets.CF_R2_TOKEN }}
|
|
CF_R2_S3_API: ${{ secrets.CF_R2_S3_API }}
|
|
|
|
windows_32bit:
|
|
if: github.event_name != 'workflow_dispatch' || inputs.windows_32bit
|
|
needs: prepare
|
|
name: Windows 32-bit
|
|
uses: ./.github/workflows/build_windows.yaml
|
|
secrets: inherit
|
|
with:
|
|
sign: true
|
|
deploy-mode: true
|
|
arch: x86
|
|
version: ${{ needs.prepare.outputs.win32-x86-version }}
|
|
|
|
windows_64bit:
|
|
if: github.event_name != 'workflow_dispatch' || inputs.windows_64bit
|
|
needs: prepare
|
|
name: Windows 64-bit
|
|
uses: ./.github/workflows/build_windows.yaml
|
|
secrets: inherit
|
|
with:
|
|
sign: true
|
|
deploy-mode: true
|
|
arch: x64
|
|
version: ${{ needs.prepare.outputs.win32-x64-version }}
|
|
|
|
macos:
|
|
if: github.event_name != 'workflow_dispatch' || inputs.macos
|
|
needs: prepare
|
|
name: macOS
|
|
uses: ./.github/workflows/build_macos.yaml
|
|
secrets: inherit
|
|
with:
|
|
sign: true
|
|
deploy-mode: true
|
|
base-url: https://packages.element.io/${{ inputs.mode == 'release' && 'desktop' || 'nightly' }}
|
|
version: ${{ needs.prepare.outputs.macos-version }}
|
|
|
|
linux:
|
|
if: github.event_name != 'workflow_dispatch' || inputs.linux
|
|
needs: prepare
|
|
name: Linux
|
|
uses: ./.github/workflows/build_linux.yaml
|
|
secrets: inherit
|
|
with:
|
|
sqlcipher: system
|
|
deploy-mode: true
|
|
version: ${{ needs.prepare.outputs.linux-version }}
|
|
|
|
deploy:
|
|
needs:
|
|
- macos
|
|
- windows_32bit
|
|
- windows_64bit
|
|
runs-on: ubuntu-latest
|
|
name: Deploy
|
|
if: always() && (github.event != 'workflow_dispatch' || inputs.deploy)
|
|
environment: packages.element.io
|
|
steps:
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: packages.element.io
|
|
path: packages.element.io
|
|
|
|
- name: Deploy debian repo
|
|
if: github.event_name != 'workflow_dispatch' || inputs.linux
|
|
run: |
|
|
mv packages.element.io/debian .
|
|
aws s3 cp --recursive debian/ s3://$R2_BUCKET/debian --endpoint-url $R2_URL --region auto
|
|
env:
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.CF_R2_ACCESS_KEY_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.CF_R2_TOKEN }}
|
|
R2_URL: ${{ secrets.CF_R2_S3_API }}
|
|
|
|
- name: Deploy artifacts
|
|
if: github.event_name != 'workflow_dispatch' || inputs.macos
|
|
run: |
|
|
aws s3 cp --recursive packages.element.io/ s3://$R2_BUCKET/$DEPLOYMENT_DIR --endpoint-url $R2_URL --region auto
|
|
env:
|
|
AWS_ACCESS_KEY_ID: ${{ secrets.CF_R2_ACCESS_KEY_ID }}
|
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.CF_R2_TOKEN }}
|
|
R2_URL: ${{ secrets.CF_R2_S3_API }}
|
|
DEPLOYMENT_DIR: ${{ inputs.mode == 'release' && 'desktop' || 'nightly' }}
|