Skip to content

Commit

Permalink
pwd on that THING
Browse files Browse the repository at this point in the history
  • Loading branch information
adamcohenhillel committed Oct 23, 2024
1 parent 285ed58 commit 6f5a7f0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/deploy_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,22 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Change to docs directory
run: cd docs
run: |
cd docs
pwd
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install dependencies
run: npm ci
run: |
pwd
npm ci
- name: Build
run: npm run build
run: |
pwd
npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down

0 comments on commit 6f5a7f0

Please sign in to comment.