Skip to content

Commit

Permalink
try to fix ghpages
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetancollaud committed Feb 6, 2024
1 parent ae13011 commit b27486d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-aggregator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
working-directory: aggregator/
run: mvn --batch-mode clean package

- name: Upload aggregator
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: aggregator
Expand All @@ -37,10 +37,11 @@ jobs:
if: github.ref == 'refs/heads/master'

steps:
- name: Download aggregator
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: aggregator
path: aggregator/

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/build-frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
working-directory: frontend/
run: npm run build

- name: Upload aggregator
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: frontend
Expand All @@ -38,11 +38,12 @@ jobs:
if: github.ref == 'refs/heads/master'

steps:
- name: Download aggregator

- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: frontend
path: frontend/

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down

0 comments on commit b27486d

Please sign in to comment.