Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Bláha committed Jan 20, 2022
1 parent 9bd6977 commit 6eafa77
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/collect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
collect:
name: "Collect"
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/collector
steps:
- name: "Checkout"
uses: actions/[email protected]
Expand Down Expand Up @@ -44,6 +47,9 @@ jobs:
name: "Deploy"
runs-on: ubuntu-latest
needs: collect
defaults:
run:
working-directory: packages/collector
steps:
- name: "Checkout"
uses: actions/[email protected]
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
build:
name: "Build"
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/frontend
steps:
- name: "Checkout"
uses: actions/[email protected]
Expand All @@ -29,13 +32,13 @@ jobs:
- name: "build"
run: |
npm run build-frontend
npm run build
- name: "Upload artifact"
uses: actions/upload-artifact@v2
with:
name: "frontend"
path: packages/frontend/dist
path: dist

deploy:
name: "Deploy"
Expand Down

0 comments on commit 6eafa77

Please sign in to comment.