2022-08-29 09:13:25 -04:00
|
|
|
name: stable-windows
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
on:
|
2021-03-28 17:07:35 -04:00
|
|
|
workflow_dispatch:
|
2022-08-16 09:33:34 -04:00
|
|
|
inputs:
|
|
|
|
new_release:
|
2022-08-17 00:23:19 -04:00
|
|
|
type: boolean
|
2022-08-16 09:33:34 -04:00
|
|
|
description: Force new Release
|
2023-01-08 09:33:27 -05:00
|
|
|
force_version:
|
|
|
|
type: boolean
|
|
|
|
description: Force update version
|
2021-01-12 15:01:29 -05:00
|
|
|
schedule:
|
2022-09-02 11:12:41 -04:00
|
|
|
- cron: '0 18 * * *'
|
2021-01-12 15:01:29 -05:00
|
|
|
push:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2021-01-12 15:01:29 -05:00
|
|
|
pull_request:
|
2022-08-29 09:13:25 -04:00
|
|
|
branches: [ master ]
|
2022-08-22 18:59:49 -04:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
2022-11-02 15:03:09 -04:00
|
|
|
env:
|
|
|
|
APP_NAME: VSCodium
|
|
|
|
ASSETS_REPOSITORY: ${{ github.repository }}
|
|
|
|
OS_NAME: windows
|
|
|
|
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
|
|
|
|
VSCODE_QUALITY: stable
|
|
|
|
|
|
|
|
|
2021-01-12 15:01:29 -05:00
|
|
|
jobs:
|
2022-09-19 01:27:12 -04:00
|
|
|
build:
|
2022-03-16 04:02:30 -04:00
|
|
|
runs-on: windows-2019
|
2021-10-01 12:47:10 -04:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
2021-01-12 15:01:29 -05:00
|
|
|
env:
|
2022-09-02 02:21:24 -04:00
|
|
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
2021-01-12 15:01:29 -05:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-05-07 03:50:30 -04:00
|
|
|
vscode_arch:
|
|
|
|
- x64
|
2022-05-14 12:44:59 -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 }}
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
steps:
|
2022-04-11 08:37:54 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Setup Node.js environment
|
2022-04-11 08:37:54 -04:00
|
|
|
uses: actions/setup-node@v3
|
2021-01-12 15:01:29 -05:00
|
|
|
with:
|
2022-04-19 16:55:02 -04:00
|
|
|
node-version: 16
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Install Yarn
|
|
|
|
run: npm install -g yarn
|
|
|
|
|
2022-05-07 03:50:30 -04:00
|
|
|
- name: Setup Python 3
|
2023-03-03 08:25:51 -05:00
|
|
|
uses: actions/setup-python@v4
|
2021-01-12 15:01:29 -05:00
|
|
|
with:
|
2022-05-07 03:50:30 -04:00
|
|
|
python-version: '3.x'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- 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
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Check existing VSCodium tags/releases
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2022-08-16 09:33:34 -04:00
|
|
|
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
2021-01-12 15:01:29 -05:00
|
|
|
run: ./check_tags.sh
|
2021-03-10 10:48:45 -05:00
|
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- 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'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- 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'
|
2021-01-12 15:01:29 -05:00
|
|
|
|
|
|
|
- name: Update versions repo
|
|
|
|
env:
|
2023-01-08 09:33:27 -05:00
|
|
|
FORCE_UPDATE: ${{ github.event.inputs.force_version }}
|
2021-01-12 15:01:29 -05:00
|
|
|
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
|
|
|
|
GITHUB_USERNAME: ${{ github.repository_owner }}
|
2022-09-19 11:09:16 -04:00
|
|
|
run: ./update_version.sh
|
2023-01-08 09:33:27 -05:00
|
|
|
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 }}
|
2021-01-12 15:01:29 -05:00
|
|
|
|
2022-09-19 01:27:12 -04:00
|
|
|
- name: Release to WinGet
|
2023-03-03 03:30:46 -05:00
|
|
|
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'
|