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

132 lines
3.3 KiB
YAML
Raw Normal View History

2022-08-29 09:13:25 -04:00
name: stable-windows
on:
workflow_dispatch:
inputs:
new_release:
2022-08-17 00:23:19 -04:00
type: boolean
description: Force new Release
force_version:
type: boolean
description: Force update version
schedule:
2022-09-02 11:12:41 -04:00
- cron: '0 18 * * *'
push:
2022-08-29 09:13:25 -04:00
branches: [ master ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 09:13:25 -04:00
branches: [ master ]
2022-08-22 18:59:49 -04: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 01:27:12 -04:00
build:
runs-on: windows-2019
2021-10-01 12:47:10 -04:00
defaults:
run:
shell: bash
env:
VSCODE_ARCH: ${{ matrix.vscode_arch }}
strategy:
fail-fast: false
matrix:
2022-05-07 03:50:30 -04:00
vscode_arch:
- x64
2023-06-02 10:32:07 -04:00
- ia32
2022-05-07 03:50:30 -04:00
- arm64
2022-09-19 05:12:45 -04:00
outputs:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }}
steps:
2022-04-11 08:37:54 -04:00
- uses: actions/checkout@v3
- name: Setup Node.js environment
2022-04-11 08:37:54 -04:00
uses: actions/setup-node@v3
with:
2023-07-06 18:23:35 -04:00
node-version: '16'
- name: Install Yarn
run: npm install -g yarn
2022-05-07 03:50:30 -04:00
- name: Setup Python 3
uses: actions/setup-python@v4
with:
2022-05-07 03:50:30 -04:00
python-version: '3.x'
- name: Clone VSCode repo
run: ./get_repo.sh
2021-10-01 12:47:10 -04:00
- name: Check PR or cron
run: ./check_cron_or_pr.sh
- name: Check existing VSCodium tags/releases
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEW_RELEASE: ${{ github.event.inputs.new_release }}
run: ./check_tags.sh
2021-03-10 10:48:45 -05: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 16:15:41 -04:00
- name: Prepare assets
run: ./prepare_assets.sh
2021-03-10 10:48:45 -05:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
- name: Release
env:
2021-11-10 04:40:20 -05:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-10-01 12:47:10 -04: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 11:09:16 -04:00
run: ./update_version.sh
if: env.SHOULD_DEPLOY == 'yes'
2022-09-19 01:27:12 -04:00
winget:
needs: build
runs-on: windows-latest
2022-09-19 05:12:45 -04:00
defaults:
run:
shell: bash
2022-10-06 16:15:41 -04:00
env:
APP_IDENTIFIER: VSCodium.VSCodium
2022-09-19 01:27:12 -04:00
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
steps:
- uses: actions/checkout@v3
- name: Check version
run: ./stores/winget/check_version.sh
env:
RELEASE_VERSION: ${{ needs.build.outputs.RELEASE_VERSION }}
2022-09-19 01:27:12 -04:00
- name: Release to WinGet
uses: vedantmgoyal2009/winget-releaser@v2
2022-09-19 01:27:12 -04:00
with:
2022-10-06 16:15:41 -04:00
identifier: ${{ env.APP_IDENTIFIER }}
version: ${{ env.RELEASE_VERSION }}
2022-09-19 01:27:12 -04:00
release-tag: ${{ env.RELEASE_VERSION }}
installers-regex: '\.exe$' # only .exe files
token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
if: env.SHOULD_DEPLOY == 'yes'