Revert "[vscodium][linux] Fix the patch file for linux builds" #547
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: stable-windows | |
on: | |
workflow_dispatch: | |
inputs: | |
new_release: | |
type: boolean | |
description: Force new Release | |
force_version: | |
type: boolean | |
description: Force update version | |
test_asset_builder: | |
type: boolean | |
description: Test the assets builder | |
schedule: | |
- cron: '0 18 * * *' | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '**/*.md' | |
env: | |
APP_NAME: VSCodium | |
ASSETS_REPOSITORY: ${{ github.repository }} | |
OS_NAME: windows | |
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions | |
VSCODE_QUALITY: stable | |
jobs: | |
build: | |
runs-on: windows-2019 | |
defaults: | |
run: | |
shell: bash | |
env: | |
VSCODE_ARCH: ${{ matrix.vscode_arch }} | |
strategy: | |
fail-fast: false | |
matrix: | |
vscode_arch: | |
- x64 | |
- ia32 | |
- arm64 | |
outputs: | |
RELEASE_VERSION: ${{ env.RELEASE_VERSION }} | |
SHOULD_DEPLOY: ${{ env.SHOULD_DEPLOY }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install Yarn | |
run: npm install -g yarn | |
- name: Setup Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Clone VSCode repo | |
run: ./get_repo.sh | |
- name: Check PR or cron | |
env: | |
TEST_ASSET_BUILDER: ${{ github.event.inputs.test_asset_builder }} | |
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 | |
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' | |
- name: Prepare assets | |
run: ./prepare_assets.sh | |
if: env.SHOULD_BUILD == 'yes' && (env.SHOULD_DEPLOY == 'yes' || github.event.inputs.test_asset_builder == 'true') | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
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 }} | |
run: ./update_version.sh | |
if: env.SHOULD_DEPLOY == 'yes' | |
winget: | |
needs: build | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: bash | |
env: | |
APP_IDENTIFIER: VSCodium.VSCodium | |
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 }} | |
- name: Release to WinGet | |
uses: vedantmgoyal2009/winget-releaser@v2 | |
with: | |
identifier: ${{ env.APP_IDENTIFIER }} | |
version: ${{ env.RELEASE_VERSION }} | |
release-tag: ${{ env.RELEASE_VERSION }} | |
installers-regex: '\.exe$' # only .exe files | |
token: ${{ secrets.STRONGER_GITHUB_TOKEN }} | |
if: env.SHOULD_DEPLOY == 'yes' |