2022-08-29 16:13:25 +03:00
|
|
|
name: stable-macos
|
2020-09-18 15:41:04 +03:00
|
|
|
|
|
|
|
on:
|
2021-03-29 00:07:35 +03:00
|
|
|
workflow_dispatch:
|
2022-08-16 16:33:34 +03:00
|
|
|
inputs:
|
|
|
|
new_release:
|
2022-08-17 07:23:19 +03:00
|
|
|
type: boolean
|
2022-08-16 16:33:34 +03:00
|
|
|
description: Force new Release
|
2020-09-21 01:28:07 +03:00
|
|
|
schedule:
|
2022-09-02 18:12:41 +03:00
|
|
|
- cron: '0 18 * * *'
|
2020-09-18 15:41:04 +03:00
|
|
|
push:
|
2022-08-29 16:13:25 +03:00
|
|
|
branches: [ master ]
|
2022-08-23 01:59:49 +03:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2020-09-18 15:41:04 +03:00
|
|
|
pull_request:
|
2022-08-29 16:13:25 +03:00
|
|
|
branches: [ master ]
|
2022-08-23 01:59:49 +03:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2020-09-18 15:41:04 +03:00
|
|
|
|
2022-11-02 22:03:09 +03:00
|
|
|
env:
|
|
|
|
APP_NAME: VSCodium
|
|
|
|
ASSETS_REPOSITORY: ${{ github.repository }}
|
|
|
|
OS_NAME: osx
|
|
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
|
|
VSCODE_QUALITY: stable
|
|
|
|
|
2020-09-18 15:41:04 +03:00
|
|
|
jobs:
|
|
|
|
build:
|
2022-04-27 18:58:03 +03:00
|
|
|
runs-on: ${{ matrix.runner }}
|
2022-08-29 16:13:25 +03:00
|
|
|
env:
|
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
2021-09-18 11:12:10 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
2022-09-14 01:00:52 +03:00
|
|
|
- runner: macos-12
|
2022-04-27 18:58:03 +03:00
|
|
|
vscode_arch: x64
|
|
|
|
- runner: [self-hosted, macOS, ARM64]
|
|
|
|
vscode_arch: arm64
|
2021-09-18 11:12:10 +03:00
|
|
|
|
2020-09-18 15:41:04 +03:00
|
|
|
steps:
|
2022-04-11 15:37:54 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-01 19:47:10 +03:00
|
|
|
|
2020-09-18 15:41:04 +03:00
|
|
|
- name: Setup Node.js environment
|
2022-04-11 15:37:54 +03:00
|
|
|
uses: actions/setup-node@v3
|
2020-09-18 15:41:04 +03:00
|
|
|
with:
|
2022-04-19 23:55:02 +03:00
|
|
|
node-version: 16
|
2021-03-10 18:48:45 +03:00
|
|
|
|
2020-09-18 15:41:04 +03:00
|
|
|
- name: Clone VSCode repo
|
2021-10-01 19:47:10 +03:00
|
|
|
run: . get_repo.sh
|
|
|
|
|
|
|
|
- name: Check PR or cron
|
|
|
|
run: . check_cron_or_pr.sh
|
2020-09-18 15:41:04 +03:00
|
|
|
|
|
|
|
- name: Check existing VSCodium tags/releases
|
2020-09-18 16:01:29 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-08-16 16:33:34 +03:00
|
|
|
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
2021-10-01 19:47:10 +03:00
|
|
|
run: . check_tags.sh
|
2021-03-10 18:48:45 +03:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2021-03-10 20:58:36 +03:00
|
|
|
|
2020-09-18 15:41:04 +03:00
|
|
|
- name: Build
|
2020-09-18 16:44:31 +03:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-09-18 15:41:04 +03:00
|
|
|
run: ./build.sh
|
2020-09-21 00:26:06 +03:00
|
|
|
if: env.SHOULD_BUILD == 'yes'
|
2020-09-18 15:41:04 +03:00
|
|
|
|
2022-10-06 23:15:41 +03:00
|
|
|
- name: Prepare assets
|
2020-09-19 01:34:07 +03:00
|
|
|
env:
|
|
|
|
CERTIFICATE_OSX_P12: ${{ secrets.CERTIFICATE_OSX_P12 }}
|
|
|
|
CERTIFICATE_OSX_PASSWORD: ${{ secrets.CERTIFICATE_OSX_PASSWORD }}
|
|
|
|
CERTIFICATE_OSX_ID: ${{ secrets.CERTIFICATE_OSX_ID }}
|
2022-10-06 23:15:41 +03:00
|
|
|
run: ./prepare_assets.sh
|
2021-03-10 18:48:45 +03:00
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2020-09-19 00:54:45 +03:00
|
|
|
|
2020-09-18 15:41:04 +03:00
|
|
|
- name: Release
|
|
|
|
env:
|
2021-11-10 12:40:20 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-10-01 19:47:10 +03:00
|
|
|
run: ./release.sh
|
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2020-09-18 15:41:04 +03:00
|
|
|
|
2020-09-19 01:34:07 +03:00
|
|
|
- name: Update versions repo
|
|
|
|
env:
|
2020-09-19 02:30:10 +03:00
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
2020-09-19 01:34:07 +03:00
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
2022-09-19 18:09:16 +03:00
|
|
|
run: ./update_version.sh
|
|
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
2022-05-07 18:18:14 +03:00
|
|
|
|
|
|
|
- name: Clean up keychain
|
2022-05-07 18:29:18 +03:00
|
|
|
if: always()
|
2022-05-07 18:18:14 +03:00
|
|
|
run: |
|
2022-05-07 18:29:18 +03:00
|
|
|
KEYCHAIN=$RUNNER_TEMP/build.keychain
|
|
|
|
|
|
|
|
if [ -f "$KEYCHAIN" ];
|
|
|
|
then
|
|
|
|
security delete-keychain $KEYCHAIN
|
|
|
|
fi
|