Skip to content

Commit

Permalink
[FIX] #184 -> develop
Browse files Browse the repository at this point in the history
[FIX/#184] ์ปดํฌ๋„ŒํŠธ ๋ฌธ์„œํ™”
  • Loading branch information
leeeyubin authored Aug 16, 2024
2 parents 828706f + 849f018 commit 1c67de6
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/dokka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,31 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up JDK 18
uses: actions/setup-java@v4
with:
java-version: 18
distribution: "temurin"

- name: permissions
- name: Change gradlew permissions
run: chmod +x gradlew

- name: Create Local Properties
run: touch local.properties

- name: Set Local Properties
env:
BASE_URL: ${{ secrets.BASE_URL }}
NATIVE_APP_KEY: ${{ secrets.NATIVE_APP_KEY }}
NATIVEAPPKEY: ${{ secrets.NATIVEAPPKEY }}
run: |
echo base.url=\"$BASE_URL\" >> local.properties
echo native.app.key=\"$NATIVE_APP_KEY\" >> local.properties
echo nativeAppKey=\"$NATIVEAPPKEY\" >> local.properties
- name: Build Documentation
run: ./gradlew dokkaHtml

Expand Down

0 comments on commit 1c67de6

Please sign in to comment.