From 2f6b7a0f10fd12099030bec94316e4cd5fe76e57 Mon Sep 17 00:00:00 2001 From: "James R. Perkins" Date: Wed, 20 Nov 2024 16:23:32 -0800 Subject: [PATCH] The tag doesn't need to be defined because you can choose the tag when running the action. Signed-off-by: James R. Perkins --- .github/workflows/deploy-javadocs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/deploy-javadocs.yml b/.github/workflows/deploy-javadocs.yml index 274ea73..1ca0df0 100644 --- a/.github/workflows/deploy-javadocs.yml +++ b/.github/workflows/deploy-javadocs.yml @@ -8,11 +8,6 @@ on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: - inputs: - tag: - description: "The tag used to create the JavaDoc for" - required: true - type: string # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: @@ -42,9 +37,6 @@ jobs: java-version: 11 cache: 'maven' distribution: 'temurin' - - name: Checkout Tag if Defined - if: inputs.tag 1= '' - run: git checkout ${{ inputs.tag }} - name: Generate JavaDoc run: mvn -B -ntp clean -Pjboss-release javadoc:javadoc - name: Upload artifact