Skip to content

Commit

Permalink
fix repo casing
Browse files Browse the repository at this point in the history
  • Loading branch information
DougAnderson444 committed Apr 16, 2024
1 parent f9b13fd commit 30cb93a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Set VITE_BASE
run: |
echo "VITE_BASE=https://\${GITHUB_REPOSITORY_OWNER,,}.github.io/\${GITHUB_REPOSITORY,,}/" >> $GITHUB_ENV
- name: Install Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -29,7 +33,7 @@ jobs:
- name: build
env:
BASE_PATH: '/integrity-wallet'
VITE_BASE: 'https://${{ github.repository_owner,, }}.github.io/integrity-wallet'
VITE_BASE: ${{ env.VITE_BASE }}
run: |
cd inner-app && npm run build && cd .. && npm run build
touch docs/.nojekyll
Expand Down

0 comments on commit 30cb93a

Please sign in to comment.