Skip to content

Commit

Permalink
fix: update target folder for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
romainricard committed Apr 4, 2024
1 parent d7a3344 commit 2154b10
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
branches:
- master
paths-ignore:
- '**.md'
- "**.md"
pull_request:
paths-ignore:
- '**.md'
- "**.md"
env:
FORCE_COLOR: 3
concurrency:
Expand All @@ -17,7 +17,6 @@ concurrency:
# which commit caused the failure.
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch }}
jobs:

# ----- Build ----------------------------------------------------------------
build:
name: Build
Expand Down Expand Up @@ -66,7 +65,7 @@ jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: [ build ]
needs: [build]
# Only deploy from the default branch.
if: github.ref_name == github.event.repository.default_branch
steps:
Expand Down Expand Up @@ -101,5 +100,5 @@ jobs:
uses: JamesIves/github-pages-deploy-action@v4.4.0
with:
branch: gh-pages
folder: .
folder: dist
single-commit: true

0 comments on commit 2154b10

Please sign in to comment.