mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-23 03:20:16 +10:00
104 lines
3.0 KiB
YAML
104 lines
3.0 KiB
YAML
name: Publish - Insider - macOS
|
|
|
|
on:
|
|
workflow_dispatch: {}
|
|
repository_dispatch:
|
|
types:
|
|
- publish-insider
|
|
|
|
env:
|
|
APP_NAME: VSCodium
|
|
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
|
|
BINARY_NAME: codium-insiders
|
|
GH_REPO_PATH: ${{ github.repository }}
|
|
GITHUB_BRANCH: insider
|
|
ORG_NAME: ${{ github.repository_owner }}
|
|
OS_NAME: osx
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
VSCODE_QUALITY: insider
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.runner }}
|
|
environment: publish
|
|
permissions:
|
|
contents: write
|
|
env:
|
|
SHOULD_BUILD: yes
|
|
SHOULD_DEPLOY: yes
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- runner: macos-15-intel
|
|
vscode_arch: x64
|
|
- runner: [self-hosted, macOS, ARM64]
|
|
vscode_arch: arm64
|
|
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
ref: ${{ env.GITHUB_BRANCH }}
|
|
persist-credentials: false
|
|
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
with:
|
|
node-version-file: .nvmrc
|
|
|
|
- name: Setup Python 3
|
|
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
|
|
with:
|
|
python-version: "3.11"
|
|
if: env.VSCODE_ARCH == 'x64'
|
|
|
|
- name: Clone VSCode repo
|
|
run: . get_repo.sh
|
|
|
|
- name: Check existing VSCodium tags/releases
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: . check_tags.sh
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
|
|
|
- name: Build
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: ./build.sh
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
- name: Prepare assets
|
|
env:
|
|
CERTIFICATE_OSX_APP_PASSWORD: ${{ secrets.CERTIFICATE_OSX_NEW_APP_PASSWORD }}
|
|
CERTIFICATE_OSX_ID: ${{ secrets.CERTIFICATE_OSX_NEW_ID }}
|
|
CERTIFICATE_OSX_P12_DATA: ${{ secrets.CERTIFICATE_OSX_NEW_P12_DATA }}
|
|
CERTIFICATE_OSX_P12_PASSWORD: ${{ secrets.CERTIFICATE_OSX_NEW_P12_PASSWORD }}
|
|
CERTIFICATE_OSX_TEAM_ID: ${{ secrets.CERTIFICATE_OSX_NEW_TEAM_ID }}
|
|
run: ./prepare_assets.sh
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
|
|
|
- name: Release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
run: ./release.sh
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
|
|
|
- name: Update versions repo
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
run: ./update_version.sh
|
|
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
|
|
|
|
- name: Clean up keychain
|
|
if: always()
|
|
run: |
|
|
KEYCHAIN=$RUNNER_TEMP/build.keychain
|
|
|
|
if [ -f "$KEYCHAIN" ];
|
|
then
|
|
security delete-keychain $KEYCHAIN
|
|
fi
|