Skip to content

Commit

Permalink
fix: another attempt at fixing deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
tomfutago committed Dec 11, 2024
1 parent 1da85d2 commit 8ab0d91
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 16,926 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy_wm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
cache: npm

- name: Install dependencies
run: npm install
run: cd monitor && npm install

- name: build
env:
Expand All @@ -26,13 +26,14 @@ jobs:
## EVIDENCE_SOURCE__my_source__username: ${{ secrets.EVIDENCE_SOURCE__MY_SOURCE__USERNAME }}
## EVIDENCE_SOURCE__my_source__private_key: ${{ secrets.EVIDENCE_SOURCE__MY_SOURCE__PRIVATE_KEY }}
run: |
cd monitor
npm run sources
npm run build:strict
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v3
with:
path: 'build/${{ github.event.repository.name }}'
path: 'monitor/build/${{ github.event.repository.name }}'

deploy:
needs: build
Expand Down
2 changes: 0 additions & 2 deletions evidence.config.yaml

This file was deleted.

2 changes: 2 additions & 0 deletions monitor/evidence.config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
deployment:
basePath: /wallet-monitoring
2 changes: 1 addition & 1 deletion monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "my-evidence-project",
"version": "0.0.1",
"scripts": {
"build": "EVIDENCE_BUILD_DIR=./build/wallet-monitoring evidence build",
"build": "evidence build",
"build:strict": "evidence build:strict",
"dev": "evidence dev --open /",
"test": "evidence build",
Expand Down
Loading

0 comments on commit 8ab0d91

Please sign in to comment.