Skip to content

Commit

Permalink
ci: use proper output directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mtiller committed Aug 31, 2023
1 parent f75149a commit 768d198
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: korean-site
path: out
path: .next

publish_korean_site:
runs-on: ubuntu-latest
Expand All @@ -76,13 +76,14 @@ jobs:
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout Repository
uses: actions/checkout@v3
- name: Fetch Submodules
run: git submodule update --init --recursive
with:
submodules: recursive
- name: Download Korean Site
uses: actions/download-artifact@v3
with:
name: korean-site
path: .next
- name: Install netlify-cli
run: npm install -g netlify-cli
- name: Deploy Korean Site
run: npx netlify deploy --prod --dir=out
run: npx netlify deploy --prod --dir=.next

0 comments on commit 768d198

Please sign in to comment.