We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 685eb92 commit dd5554fCopy full SHA for dd5554f
.github/workflows/Register.yml
.github/workflows/Registrator.yml
@@ -0,0 +1,24 @@
1
+name: Register Package
2
+on:
3
+ workflow_dispatch:
4
+ pull_request:
5
+ types:
6
+ - closed
7
+ paths:
8
+ - 'Project.toml'
9
+ branches:
10
+ - 'master'
11
+ - 'main'
12
+
13
+permissions:
14
+ contents: write
15
+ pull-requests: write
16
17
+jobs:
18
+ Register:
19
+ if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true
20
+ uses: "ITensor/ITensorActions/.github/workflows/Registrator.yml@main"
21
+ with:
22
+ localregistry: ITensor/ITensorRegistry
23
+ secrets:
24
+ REGISTRATOR_KEY: ${{ secrets.REGISTRATOR_KEY }}
0 commit comments