added separate register workflow
parent
f68f5a9bac
commit
01a3ccf672
|
@ -11,6 +11,7 @@ on:
|
|||
- 'README.md'
|
||||
- '.github/workflows/cffvalidation.yml'
|
||||
- '.github/workflows/CompatHelper.yml'
|
||||
- '.github/workflows/JuliaRegister.yml'
|
||||
- '.github/workflows/release.yml'
|
||||
- '.github/workflows/TagBot.yml'
|
||||
- '.github/zenodo/*'
|
||||
|
@ -25,6 +26,7 @@ on:
|
|||
- 'README.md'
|
||||
- '.github/workflows/cffvalidation.yml'
|
||||
- '.github/workflows/CompatHelper.yml'
|
||||
- '.github/workflows/JuliaRegister.yml'
|
||||
- '.github/workflows/release.yml'
|
||||
- '.github/workflows/TagBot.yml'
|
||||
- '.github/zenodo/*'
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
name: Register Package
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
version:
|
||||
description: "Version to register or component to bump (without leading 'v' e.g. '1.0.1')"
|
||||
required: true
|
||||
jobs:
|
||||
register:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: julia-actions/RegisterAction@latest
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in New Issue