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

140 lines
3.6 KiB
YAML
Raw Normal View History

2022-08-29 09:13:25 -04:00
name: insider-windows
on:
workflow_dispatch:
inputs:
release_version:
type: string
description: Forced release version
2022-10-24 15:27:03 -04:00
new_release:
type: boolean
description: Force new Release
schedule:
- cron: '0 8 * * *'
push:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
pull_request:
2022-08-29 09:13:25 -04:00
branches: [ insider ]
2022-08-22 18:59:49 -04:00
paths-ignore:
- '**/*.md'
env:
APP_NAME: VSCodium
ASSETS_REPOSITORY: ${{ github.repository }}-insiders
GITHUB_BRANCH: insider
OS_NAME: windows
VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions
VSCODE_QUALITY: insider
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:
2022-08-29 09:13:25 -04:00
VSCODE_ARCH: ${{ matrix.vscode_arch }}
strategy:
fail-fast: false
matrix:
2022-05-07 03:50:30 -04:00
vscode_arch:
- x64
2023-05-09 20:30:07 -04:00
# - ia32
2022-05-07 03:50:30 -04:00
- arm64
2022-09-19 05:03:49 -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
with:
ref: ${{ env.GITHUB_BRANCH }}
- name: Setup Node.js environment
2022-04-11 08:37:54 -04:00
uses: actions/setup-node@v3
with:
2023-05-09 20:30:07 -04:00
node-version: 16.17
- 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
env:
RELEASE_VERSION: ${{ github.event.inputs.release_version }}
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 }}
2022-10-24 15:27:03 -04:00
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:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
2022-09-19 11:09:16 -04:00
GITHUB_USERNAME: ${{ github.repository_owner }}
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:
GITHUB_TOKEN: ${{ secrets.STRONGER_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.repository_owner }}
2022-09-19 11:09:16 -04:00
run: ./update_version.sh
2022-09-19 01:27:12 -04:00
if: env.SHOULD_BUILD == 'yes' && env.SHOULD_DEPLOY == 'yes'
winget:
needs: build
runs-on: windows-latest
2022-09-19 05:12:45 -04:00
defaults:
run:
shell: bash
2022-09-19 01:27:12 -04:00
env:
2022-10-06 16:15:41 -04:00
APP_IDENTIFIER: VSCodium.VSCodium.Insiders
ASSETS_REPOSITORY: vscodium-insiders
2022-09-19 01:27:12 -04:00
if: needs.build.outputs.SHOULD_DEPLOY == 'yes'
steps:
- uses: actions/checkout@v3
with:
ref: ${{ env.GITHUB_BRANCH }}
2022-09-19 01:27:12 -04: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 01:27:12 -04:00
with:
2022-10-06 16:15:41 -04:00
identifier: ${{ env.APP_IDENTIFIER }}
2022-09-19 10:24:59 -04:00
version: ${{ env.RELEASE_VERSION }}
release-repository: ${{ env.ASSETS_REPOSITORY }}
2022-09-19 10:24:59 -04:00
release-tag: ${{ env.RELEASE_VERSION }}-insider
2022-09-19 01:27:12 -04:00
installers-regex: '\.exe$' # only .exe files
token: ${{ secrets.STRONGER_GITHUB_TOKEN }}
if: env.SHOULD_DEPLOY == 'yes'