Skip to content

Commit 7bb8579

Browse files
authored
chore: prepare for workflow dispatch (#61)
bypassing in order to allow manual triggering of release action
1 parent 4d3239c commit 7bb8579

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
permissions:
3+
contents: write
4+
packages: write
5+
attestations: write
6+
id-token: write
7+
on:
8+
workflow_dispatch:
9+
pull_request:
10+
branches: [main]
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: NoOp
16+
run: |
17+
echo "not an op"

0 commit comments

Comments
 (0)