This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
rename project source files from jellyfish to fishjam (#18) #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Docs | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: zulu | |
- name: Build Docs | |
run: ./gradlew dokkaHtml | |
- name: Deploy | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: gh-pages | |
FOLDER: FishjamClient/build/dokka/html | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |