vscodium/.github/workflows/insider-windows.yml

141 lines
3.8 KiB
YAML
Raw Normal View History

2022-08-29 13:13:25 +00:00
name: insider-windows
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
2023-12-16 23:30:20 +00:00
generate_assets:
type: boolean
2023-12-16 23:30:20 +00:00
description: Generate assets
repository_dispatch:
types: [insider]
push:
2022-08-29 13:13:25 +00:00
branches: [ insider ]
2022-08-22 22:59:49 +00:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 13:13:25 +00:00
branches: [ insider ]
2022-08-22 22:59:49 +00:00
paths-ignore:
- '**/*.md'
env:
APP_NAME: VSCodium
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
GITHUB_BRANCH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || 'insider' }}
OS_NAME: windows
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
VSCODE_QUALITY: insider
jobs:
2022-09-19 05:27:12 +00:00
build:
runs-on: windows-2019
2021-10-01 16:47:10 +00:00
defaults:
run:
shell: bash
env:
2022-08-29 13:13:25 +00:00
VSCODE_ARCH: ${{ matrix.vscode_arch }}
strategy:
fail-fast: false
matrix:
2022-05-07 07:50:30 +00:00
vscode_arch:
- x64
2023-10-31 11:39:06 +00:00
# - ia32
2022-05-07 07:50:30 +00:00
- arm64
2022-09-19 09:03:49 +00:00
outputs:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.GITHUB_BRANCH }}
- name: Setup Node.js environment
2023-10-31 11:39:06 +00:00
uses: actions/setup-node@v4
with:
node-version: '18.17'
- name: Install Yarn
run: npm install -g yarn
2022-05-07 07:50:30 +00:00
- name: Setup Python 3
uses: actions/setup-python@v5
with:
2023-10-31 11:39:06 +00:00
python-version: '3.11'
- name: Clone VSCode repo
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
run: ./get_repo.sh
2021-10-01 16:47:10 +00:00
- name: Check PR or cron
env:
2023-12-16 23:30:20 +00:00
GENERATE_ASSETS: ${{ github.event.inputs.generate_assets }}
2021-10-01 16:47:10 +00:00
run: ./check_cron_or_pr.sh
- name: Check existing VSCodium tags/releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./check_tags.sh
2021-03-10 15:48:45 +00:00
if: env.SHOULD_DEPLOY == 'yes'
- name: Build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
npm_config_arch: ${{ matrix.vscode_arch }}
npm_config_target_arch: ${{ matrix.vscode_arch }}
run: ./build.sh
if: env.SHOULD_BUILD == 'yes'
2022-10-06 20:15:41 +00:00
- name: Prepare assets
run: ./prepare_assets.sh
2023-12-16 23:30:20 +00:00
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.generate_assets == 'true')
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2022-09-19 15:09:16 +00:00
GITHUB_USERNAME: ${{ github.repository_owner }}
2021-10-01 16:47:10 +00:00
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 }}
2022-09-19 15:09:16 +00:00
run: ./update_version.sh
2022-09-19 05:27:12 +00:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
winget:
needs: build
runs-on: windows-latest
2022-09-19 09:12:45 +00:00
defaults:
run:
shell: bash
2022-09-19 05:27:12 +00:00
env:
2022-10-06 20:15:41 +00:00
APP_IDENTIFIER: VSCodium.VSCodium.Insiders
ASSETS_REPOSITORY: vscodium-insiders
2022-09-19 05:27:12 +00:00
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
steps:
- uses: actions/checkout@v4
2022-09-19 05:27:12 +00:00
with:
ref: ${{ env.GITHUB_BRANCH }}
2022-09-19 05:27:12 +00:00
- name: Check version
run: ./stores/winget/check_version.sh
env:
RELEASE_VERSION: ${{ needs.build.outputs.RELEASE_VERSION }}
- name: Release to WinGet
uses: vedantmgoyal2009/winget-releaser@v2
2022-09-19 05:27:12 +00:00
with:
2022-10-06 20:15:41 +00:00
identifier: ${{ env.APP_IDENTIFIER }}
2022-09-19 14:24:59 +00:00
version: ${{ env.RELEASE_VERSION }}
release-repository: ${{ env.ASSETS_REPOSITORY }}
2022-09-19 14:24:59 +00:00
release-tag: ${{ env.RELEASE_VERSION }}-insider
2022-09-19 05:27:12 +00:00
installers-regex: '\.exe$' # only .exe files
token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
if: env.SHOULD_DEPLOY == 'yes'