Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthecalcaholic <6317548+theCalcaholic@users.noreply.github.com>2022-09-29 00:49:51 +0300
committerthecalcaholic <6317548+theCalcaholic@users.noreply.github.com>2022-09-29 00:49:51 +0300
commitea13af3d4d045fa225414d47fd80d2276191fcd8 (patch)
tree493daf21d9cb8570d074bb5c72cc4192b0687ade
parenta6ebbb8601dd412c81915239ab7db2ea7cd754d5 (diff)
vm-tests.yml: Fix invalid use of environment variables
Signed-off-by: thecalcaholic <6317548+theCalcaholic@users.noreply.github.com>
-rw-r--r--.github/workflows/vm-tests.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/vm-tests.yml b/.github/workflows/vm-tests.yml
index 5f2cd51a..7c3024ec 100644
--- a/.github/workflows/vm-tests.yml
+++ b/.github/workflows/vm-tests.yml
@@ -253,7 +253,7 @@ jobs:
uses: actions/download-artifact@v3
if: ${{ contains('success|failure', env.TEST_RESULT) }}
with:
- name: ${{ github.run_id }}-${TEST_TYPE}-ssh-privkey
+ name: ${{ github.run_id }}-${{ env.TEST_TYPE }}-ssh-privkey
path: /github/workspace/.ssh
- name: Shutdown server
if: ${{ contains('success|failure', env.TEST_RESULT) }}
@@ -307,7 +307,7 @@ jobs:
uses: actions/download-artifact@v3
if: ${{ contains('success|failure', env.TEST_RESULT) }}
with:
- name: ${{ github.run_id }}-${TEST_TYPE?}-ssh-privkey
+ name: ${{ github.run_id }}-${{ env.TEST_TYPE }}-ssh-privkey
path: /github/workspace/.ssh
- name: Shutdown server
if: ${{ contains('success|failure', env.TEST_RESULT) }}