From dfdf7e7cd1364a9a524b35182bf7b3d3c1e82b83 Mon Sep 17 00:00:00 2001 From: Amarachi Omereife Date: Sun, 15 Oct 2023 13:02:15 +0100 Subject: [PATCH] create artifacts folder --- .github/workflows/attach-release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/attach-release.yml b/.github/workflows/attach-release.yml index f82e2551..e7c40dab 100644 --- a/.github/workflows/attach-release.yml +++ b/.github/workflows/attach-release.yml @@ -12,10 +12,14 @@ jobs: steps: - uses: actions/checkout@v3 + - name: create artifacts directory + run: mkdir artifacts + working-directory: ./ + - uses: actions/download-artifact@v3 with: path: artifacts - + - name: Display structure of downloaded files run: ls -R working-directory: artifacts