Skip to content

chore(deps): bump step-security/ghaction-import-gpg from 6.0.0 to 6.1… #83

chore(deps): bump step-security/ghaction-import-gpg from 6.0.0 to 6.1…

chore(deps): bump step-security/ghaction-import-gpg from 6.0.0 to 6.1… #83

Workflow file for this run

name: Upload Github Pages
on:
push:
branches:
- main
defaults:
run:
shell: bash
permissions:
contents: read
packages: write
id-token: write
pages: write
env:
LC_ALL: C.UTF-8
jobs:
publish:
name: Publish
runs-on: [ self-hosted, Linux, medium, ephemeral ]
steps:
- name: Harden Runner
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Java
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
- name: Compile SDK
run: ./gradlew compileJava --scan
- name: Generate Javadoc
run: ./gradlew sdk:javadoc --scan
- name: Pages
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
with:
path: ./sdk/build/docs/javadoc
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
with:
token: ${{ secrets.GITHUB_TOKEN }}