diff --git a/.github/workflows/release_papi_tag.yml b/.github/workflows/release_papi_tag.yml new file mode 100644 index 0000000..64a20b0 --- /dev/null +++ b/.github/workflows/release_papi_tag.yml @@ -0,0 +1,19 @@ +name: Update tag version for PAPI release + +on: + workflow_dispatch: + inputs: + tag: + description: 'Name of Tag' + required: true + type: string + + +jobs: + tag-papi: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Create and push a tag + - run: echo The tag version is: ${{ inputs.tag }} +