From 3c2fdb2e42e1c7655ee96378ecca5af89ce03825 Mon Sep 17 00:00:00 2001 From: Amarachi Omereife Date: Tue, 17 Oct 2023 19:16:15 +0100 Subject: [PATCH] refactor yaml --- .github/workflows/build-uc2.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-uc2.yml b/.github/workflows/build-uc2.yml index bcf01e28..b52bc4ff 100644 --- a/.github/workflows/build-uc2.yml +++ b/.github/workflows/build-uc2.yml @@ -253,17 +253,18 @@ jobs: path: ./artifacts name: artifacts - - name: create artifacts directory - run: mkdir artifacts + - name: create artifact directory + run: mkdir artifact working-directory: ./ - - uses: actions/download-artifact@v3 + - name: 'download artifact' + uses: actions/download-artifact@v3 with: - path: artifacts + path: artifact - name: Display structure of downloaded files run: ls -R - working-directory: artifacts + working-directory: artifact - name: '📤 Upload artifact' if: always()