Skip to content

Commit e62e217

Browse files
author
Luke Wilson
committed
Enable workflow dispatch for manual triggering
1 parent a8b3e90 commit e62e217

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: Publish package to GitHub Packages
22
on:
3+
workflow_dispatch: {}
34
release:
45
types: [created]
56
jobs:
67
build:
7-
runs-on: ubuntu-latest
8-
permissions:
8+
runs-on: ubuntu-latest
9+
permissions:
910
contents: read
10-
packages: write
11+
packages: write
1112
steps:
1213
- uses: actions/checkout@v3
1314
- uses: actions/setup-node@v3

.github/workflows/version.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Auto-increment patch version number
2-
on:
2+
on:
3+
workflow_dispatch: {}
34
push:
45
branches:
56
- main

0 commit comments

Comments
 (0)