Load not supported page when hardware is not supported #302
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: Publish All Platforms | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [closed] | |
jobs: | |
build-stage-to-todesktop: | |
if: | | |
github.event_name == 'workflow_dispatch' || | |
(github.event.pull_request.merged == true && | |
contains(github.event.pull_request.labels.*.name, 'Release')) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Github checkout | |
uses: actions/checkout@v4 | |
- name: Build | |
uses: ./.github/actions/build/windows/todesktop | |
with: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
TODESKTOP_ACCESS_TOKEN: ${{secrets.TODESKTOP_ACCESS_TOKEN}} | |
TODESKTOP_EMAIL: ${{secrets.TODESKTOP_EMAIL}} |