From c18830820d5a81b6fb6b9199ae856674813e49bc Mon Sep 17 00:00:00 2001 From: Treece Burgess Date: Mon, 25 Aug 2025 16:16:27 +0000 Subject: [PATCH] release_papi_tag.yml --- .github/workflows/release_papi_tag.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release_papi_tag.yml 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 }} +