diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2640f04..a74d810 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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' diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 73d64ba..9867640 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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' diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6f18b81..95629e7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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'