diff options
author | LASER-Yi <[email protected]> | 2021-06-20 22:56:16 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2021-06-20 22:56:16 +0800 |
commit | e93ba0879023715f5f2c4ca5fc84de265b3c30ce (patch) | |
tree | 8c61474575ce4bef1c14a0a674cc83331e36b8ed /.github | |
parent | 9686a3bc367d499e0ad352c846be397879fdac3b (diff) | |
download | bazarr-e93ba0879023715f5f2c4ca5fc84de265b3c30ce.tar.gz bazarr-e93ba0879023715f5f2c4ca5fc84de265b3c30ce.zip |
no log: Use variable for UI artifact name
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 5 |
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 |