We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27b7092 commit e1daa78Copy full SHA for e1daa78
2 files changed
.github/workflows/ci.yml
@@ -1,6 +1,8 @@
1
name: CI
2
on:
3
push:
4
+ branches:
5
+ - '**'
6
workflow_dispatch:
7
8
permissions: {}
.github/workflows/release.yml
@@ -0,0 +1,15 @@
+name: Release
+on:
+ push:
+ tags:
+ - '[0-9]+.[0-9]+*'
+ workflow_dispatch:
+
+permissions:
9
+ attestations: write
10
+ contents: write
11
+ id-token: write
12
13
+jobs:
14
+ release:
15
+ uses: named-data/actions/.github/workflows/release.yml@v1
0 commit comments