Skip to content

Commit

Permalink
Create sample.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
InsanusMokrassar authored Oct 7, 2024
1 parent e50488c commit daacfa7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/sample.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish KDocs
on:
push:
branches:
- master
jobs:
publishing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 17
- name: Build
run: ./gradlew jsBrowserDistribution
- name: Publish KDocs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./sample/build/dist/js/productionExecutable
publish_branch: sample

0 comments on commit daacfa7

Please sign in to comment.