added separate register workflow

master
Martin Scheidt 2022-09-01 11:00:12 +02:00
parent f68f5a9bac
commit 01a3ccf672
2 changed files with 16 additions and 0 deletions

View File

@ -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/*'

14
.github/workflows/JuliaRegister.yml vendored Normal file
View File

@ -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 }}