Skip to content

Commit

Permalink
Update working directory in deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfraney committed Apr 2, 2024
1 parent 46abab1 commit 27ac918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Blur site 🌫️
uses: blurry-dev/[email protected]
working-directory: ./docs

- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: "./docs/dist"
publish-dir: ${{ github.workspace }}docs/dist
production-branch: main
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
Expand Down

0 comments on commit 27ac918

Please sign in to comment.