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

134 lines
3.4 KiB
YAML
Raw Normal View History

2022-08-29 13:13:25 +00:00
name: stable-windows
on:
workflow_dispatch:
inputs:
force_version:
type: boolean
description: Force update 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: [stable]
push:
2022-08-29 13:13:25 +00:00
branches: [ master ]
2022-08-22 22:59:49 +00:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 13:13:25 +00:00
branches: [ master ]
2022-08-22 22:59:49 +00:00
paths-ignore:
- '**/*.md'
env:
APP_NAME: VSCodium
ASSETS_REPOSITORY: ${{ github.repository }}
OS_NAME: windows
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
VSCODE_QUALITY: stable
jobs:
2022-09-19 05:27:12 +00:00
build:
2023-10-05 14:44:52 +00:00
runs-on: windows-2019
2021-10-01 16:47:10 +00:00
defaults:
run:
shell: bash
env:
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:12:45 +00:00
outputs:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
steps:
- uses: actions/checkout@v4
- 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
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 }}
2023-10-05 15:20:04 +00:00
GITHUB_USERNAME: ${{ github.repository_owner }}
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:
2021-11-10 09:40:20 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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:
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
2022-09-19 15:09:16 +00:00
run: ./update_version.sh
if: env.SHOULD_DEPLOY == 'yes'
2022-09-19 05:27:12 +00:00
winget:
needs: build
runs-on: windows-latest
2022-09-19 09:12:45 +00:00
defaults:
run:
shell: bash
2022-10-06 20:15:41 +00:00
env:
APP_IDENTIFIER: VSCodium.VSCodium
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
- name: Check version
run: ./stores/winget/check_version.sh
env:
RELEASE_VERSION: ${{ needs.build.outputs.RELEASE_VERSION }}
2022-09-19 05:27:12 +00:00
- 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 }}
version: ${{ env.RELEASE_VERSION }}
2022-09-19 05:27:12 +00:00
release-tag: ${{ env.RELEASE_VERSION }}
installers-regex: '\.exe$' # only .exe files
token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
if: env.SHOULD_DEPLOY == 'yes'