tirbofish/dropbear · commit
a22b80279c050ddb8034cc23847bacea06fd38a8
Merge pull request #50 from 4tkbytes/sockets
pr: more work on ffi
Signature present but could not be verified.
Unverified
@@ -0,0 +1,2 @@ +GITHUB_USERNAME=your-github-username +GITHUB_TOKEN=your-personal-access-token @@ -0,0 +1,39 @@ +name: Deploy Documentation + +on: + push: + branches: + - main + workflow_dispatch: + +permissions: + contents: write + +jobs: + deploy-docs: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + cache: 'gradle' + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + + - name: Generate documentation + run: ./gradlew dokkaHtml + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with:
Large diffs are not rendered by default. Showing the first 50 of 4153 lines. Show full diff