Skip to content

Commit

Permalink
update action with new directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Jul 10, 2024
1 parent 66f4629 commit a351e9e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ jobs:
with:
node-version: "20"
cache: npm
cache-dependency-path: "./packages/integrity-wallet/package-lock.json"
cache-dependency-path: "./packages/demos/package-lock.json"

- name: Install dependencies
run: |
cd packages/integrity-wallet
cd packages/demos
npm install
cd inner-app
npm install
Expand All @@ -86,7 +86,7 @@ jobs:
BASE_PATH: ${{ env.BASE_PATH }}
VITE_BASE: ${{ env.VITE_BASE }}
run: |
cd packages/integrity-wallet/inner-app
cd packages/demos/inner-app
npm run build
cd ..
npm run build
Expand All @@ -98,7 +98,7 @@ jobs:

# - name: Commit built dist
# run: |
# FOLDER_NAME="packages/integrity-wallet/static/$VERSION"
# FOLDER_NAME="packages/demos/static/$VERSION"
# git config --global user.name 'github-actions[bot]'
# git config --global user.email 'github-actions[bot]@users.noreply.github.com'
# git add -f $FOLDER_NAME
Expand All @@ -112,7 +112,7 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# this should match the `pages` option in your adapter-static options
path: "packages/integrity-wallet/docs/"
path: "packages/demos/docs/"

deploy:
needs: build_release
Expand Down

0 comments on commit a351e9e

Please sign in to comment.