summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorLASER-Yi <[email protected]>2021-06-20 22:56:16 +0800
committerLASER-Yi <[email protected]>2021-06-20 22:56:16 +0800
commite93ba0879023715f5f2c4ca5fc84de265b3c30ce (patch)
tree8c61474575ce4bef1c14a0a674cc83331e36b8ed /.github
parent9686a3bc367d499e0ad352c846be397879fdac3b (diff)
downloadbazarr-e93ba0879023715f5f2c4ca5fc84de265b3c30ce.tar.gz
bazarr-e93ba0879023715f5f2c4ca5fc84de265b3c30ce.zip
no log: Use variable for UI artifact name
Diffstat (limited to '.github')
-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