Skip to content

chore: update emoji-data-updater.yml #306

chore: update emoji-data-updater.yml

chore: update emoji-data-updater.yml #306

Workflow file for this run

name: gradle-dokka
on:
push:
branches: [ develop ]
env:
CI: true
jobs:
gradle-dokka:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Generate docs with dokka
run: ./gradlew dokkaHtmlMultiModule
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: docs # The branch the action should deploy to.
folder: dokka-docs # The folder the action should deploy.
token: ${{ steps.app-token.outputs.token }}