From d65f82576a790fed18dbf517e1d3b71547d75b38 Mon Sep 17 00:00:00 2001 From: Amarachi Omereife Date: Tue, 17 Oct 2023 14:05:22 +0100 Subject: [PATCH] refactor yaml --- .github/workflows/attach-release.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/attach-release.yml b/.github/workflows/attach-release.yml index cc4c3e80..1b34cd64 100644 --- a/.github/workflows/attach-release.yml +++ b/.github/workflows/attach-release.yml @@ -12,20 +12,19 @@ jobs: steps: - uses: actions/checkout@v3 - - name: create artifacts directory - run: mkdir artifacts - working-directory: ./ - - - name: Download MyArtifacts - uses: actions/download-artifact@v3 - with: - path: ./artifacts + # - name: create artifacts directory + # run: mkdir artifacts + # working-directory: ./ - name: Upload MyArtifacts uses: actions/upload-artifact@v3 with: path: ./artifacts + - name: Download MyArtifacts + uses: actions/download-artifact@v3 + with: + path: ./artifacts + - name: Display structure of downloaded files - run: ls -R - working-directory: artifacts \ No newline at end of file + run: ls -R \ No newline at end of file