81 lines
2.3 KiB
YAML
81 lines
2.3 KiB
YAML
name: insider-spearhead
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
new_release:
|
|
type: boolean
|
|
description: Force new Release
|
|
force_dispatch:
|
|
type: boolean
|
|
description: Force dispatch
|
|
dont_update:
|
|
type: boolean
|
|
description: Don't update VSCode
|
|
dont_dispatch:
|
|
type: boolean
|
|
description: Disable dispatch
|
|
schedule:
|
|
- cron: '0 7 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-14
|
|
env:
|
|
APP_NAME: VSCodium
|
|
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
OS_NAME: osx
|
|
VSCODE_ARCH: arm64
|
|
VSCODE_LATEST: ${{ github.event.inputs.dont_update == 'true' && 'no' || 'yes' }}
|
|
VSCODE_QUALITY: insider
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: insider
|
|
|
|
- name: Setup Node.js environment
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20.12'
|
|
|
|
- name: Clone VSCode repo
|
|
run: . get_repo.sh
|
|
|
|
- name: Check existing VSCodium tags/releases
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
|
IS_SPEARHEAD: 'yes'
|
|
run: . check_tags.sh
|
|
|
|
- name: Build
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: ./build.sh
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
- name: Update <quality>.json
|
|
run: ./update_qualityjson.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
if: env.SHOULD_BUILD == 'yes' && github.event.inputs.dont_update != 'true'
|
|
|
|
- name: Prepare source
|
|
run: ./prepare_src.sh
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
- name: Release source
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
|
run: ./release.sh
|
|
if: env.SHOULD_BUILD == 'yes'
|
|
|
|
- name: Dispatch builds
|
|
uses: peter-evans/repository-dispatch@v3
|
|
with:
|
|
event-type: 'insider'
|
|
if: github.event.inputs.dont_dispatch != 'true' && (env.SHOULD_BUILD == 'yes' || github.event.inputs.force_dispatch == 'true')
|