aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8873973ae..962c10c89 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,6 +16,7 @@ on:
env:
UI_DIRECTORY: ./frontend
+ UI_ARTIFACT_NAME: ui
jobs:
Frontend:
@@ -48,7 +49,7 @@ jobs:
- uses: actions/upload-artifact@v2
with:
- name: "ui"
+ name: ${{ env.UI_ARTIFACT_NAME }}
path: "${{ env.UI_DIRECTORY }}/build"
Backend:
@@ -69,7 +70,7 @@ jobs:
- name: Install UI
uses: actions/download-artifact@v2
with:
- name: "ui"
+ name: ${{ env.UI_ARTIFACT_NAME }}
path: "${{ env.UI_DIRECTORY }}/build"
- name: Install Python dependencies