Skip to content

Commit 1f78447

Browse files
committed
Add auto-registration workflow on tag push
1 parent 3d92945 commit 1f78447

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/Register.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Register
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
workflow_dispatch:
7+
jobs:
8+
register:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: JuliaRegistries/RegisterAction@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)