|
@@ -2,6 +2,13 @@ name: windows_build
|
|
|
|
|
|
on:
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_dispatch:
|
|
|
|
+ inputs:
|
|
|
|
+ new_release:
|
|
|
|
+ type: choice
|
|
|
|
+ description: Force new Release
|
|
|
|
+ options:
|
|
|
|
+ - no
|
|
|
|
+ - yes
|
|
schedule:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
- cron: '0 0 * * *'
|
|
push:
|
|
push:
|
|
@@ -50,7 +57,7 @@ jobs:
|
|
- name: Check existing VSCodium tags/releases
|
|
- name: Check existing VSCodium tags/releases
|
|
env:
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- NEW_RELEASE: ${{ secrets.NEW_RELEASE }}
|
|
|
|
|
|
+ NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
|
run: ./check_tags.sh
|
|
run: ./check_tags.sh
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
|
if: env.SHOULD_DEPLOY == 'yes'
|
|
|
|
|