From 1b2dd357bdf07826beff110168ac9ab2d2e8b279 Mon Sep 17 00:00:00 2001 From: Michael Niestroj Date: Thu, 2 Jun 2022 08:45:46 +0200 Subject: [PATCH] Add register Action --- .github/workflows/register.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/register.yml diff --git a/.github/workflows/register.yml b/.github/workflows/register.yml new file mode 100644 index 0000000..5ee3196 --- /dev/null +++ b/.github/workflows/register.yml @@ -0,0 +1,14 @@ +name: Register Package +on: + workflow_dispatch: + inputs: + version: + description: Version to register or component to bump + required: true +jobs: + register: + runs-on: ubuntu-latest + steps: + - uses: julia-actions/RegisterAction@latest + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file