Skip to content

Commit

Permalink
Add workflow_dispatch
Browse files Browse the repository at this point in the history
Allows builds to be started from web page
  • Loading branch information
mikee47 committed Jul 9, 2024
1 parent bb5a1ae commit 82d3493
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-esp32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Continuous Integration (CI) for Esp32

on:
push:


workflow_dispatch:

pull_request:
branches: [ develop ]

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Continuous Integration (CI)

on:
push:


workflow_dispatch:

pull_request:
branches: [ develop ]

Expand Down Expand Up @@ -30,7 +32,7 @@ jobs:
- variant: rp2040
arch: Rp2040

concurrency:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ toJson(matrix) }}
cancel-in-progress: true

Expand Down Expand Up @@ -73,7 +75,7 @@ jobs:
run: |
Tools/ci/install.sh
- name: Install build tools for Windows
- name: Install build tools for Windows
if: matrix.os == 'windows-latest'
run: |
. Tools/ci/setenv.ps1
Expand Down

0 comments on commit 82d3493

Please sign in to comment.