tirbofish/dropbear · diff
fix doc action
Signature present but could not be verified.
Unverified
@@ -1,16 +1,22 @@ -name: Deploy Documentation +name: Deploy Dokka Documentation on: push: branches: - - main - workflow_dispatch: + - main # Change to your default branch if different + workflow_dispatch: # Allows manual trigger permissions: - contents: write + contents: read + pages: write + id-token: write + +concurrency: + group: "pages" + cancel-in-progress: false jobs: - deploy-docs: + build: runs-on: ubuntu-latest steps: @@ -22,21 +28,30 @@ jobs: with: java-version: '21' distribution: 'temurin' - cache: 'gradle' + cache: gradle - name: Grant execute permission for gradlew run: chmod +x gradlew - - name: Stop GitHub from bothering me about .env - run: touch .env + - name: Setup Pages + uses: actions/configure-pages@v5 - - name: Generate documentation + - name: Generate Dokka documentation run: ./gradlew dokkaGenerate
Large diffs are not rendered by default. Showing the first 50 of 75 lines. Show full diff