mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-13 14:27:42 +03:00
ci: add input to force new release (#1197)
This commit is contained in:
parent
7327f9910d
commit
79cdcd61bf
9
.github/workflows/linux.yml
vendored
9
.github/workflows/linux.yml
vendored
@ -2,6 +2,13 @@ name: linux_build
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
new_release:
|
||||
type: choice
|
||||
description: Force new Release
|
||||
options:
|
||||
- no
|
||||
- yes
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
push:
|
||||
@ -54,7 +61,7 @@ jobs:
|
||||
- name: Check existing VSCodium tags/releases
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NEW_RELEASE: ${{ secrets.NEW_RELEASE }}
|
||||
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
||||
run: ./check_tags.sh
|
||||
if: env.SHOULD_DEPLOY == 'yes'
|
||||
|
||||
|
9
.github/workflows/macos.yml
vendored
9
.github/workflows/macos.yml
vendored
@ -2,6 +2,13 @@ name: macos_build
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
new_release:
|
||||
type: choice
|
||||
description: Force new Release
|
||||
options:
|
||||
- no
|
||||
- yes
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
push:
|
||||
@ -42,7 +49,7 @@ jobs:
|
||||
- name: Check existing VSCodium tags/releases
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NEW_RELEASE: ${{ secrets.NEW_RELEASE }}
|
||||
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
||||
run: . check_tags.sh
|
||||
if: env.SHOULD_DEPLOY == 'yes'
|
||||
|
||||
|
9
.github/workflows/windows.yml
vendored
9
.github/workflows/windows.yml
vendored
@ -2,6 +2,13 @@ name: windows_build
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
new_release:
|
||||
type: choice
|
||||
description: Force new Release
|
||||
options:
|
||||
- no
|
||||
- yes
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
push:
|
||||
@ -50,7 +57,7 @@ jobs:
|
||||
- name: Check existing VSCodium tags/releases
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
NEW_RELEASE: ${{ secrets.NEW_RELEASE }}
|
||||
NEW_RELEASE: ${{ github.event.inputs.new_release }}
|
||||
run: ./check_tags.sh
|
||||
if: env.SHOULD_DEPLOY == 'yes'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user