Skip to content

Commit d744fd4

Browse files
committed
github: add autopublishing of releases
1 parent 0923c1b commit d744fd4

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#
2+
# Auto-publish release on tag to trigger zenodo DOI generation
3+
#
4+
name: Releases
5+
6+
on:
7+
push:
8+
tags:
9+
- '*'
10+
11+
jobs:
12+
13+
build:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: write
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)