From a5f7059a34536cc3aba2a2e2fcf546d2514d4831 Mon Sep 17 00:00:00 2001 From: Amarachi Omereife Date: Sun, 15 Oct 2023 12:21:50 +0100 Subject: [PATCH] attach-release --- .github/workflows/attach-release.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/attach-release.yml diff --git a/.github/workflows/attach-release.yml b/.github/workflows/attach-release.yml new file mode 100644 index 00000000..4a72b322 --- /dev/null +++ b/.github/workflows/attach-release.yml @@ -0,0 +1,27 @@ +name: Attach Release Artifacts + +on: + release: + types: + - released + + +jobs: + download-artifacts: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - uses: actions/download-artifact@v3 + with: + name: my-artifact + path: artifacts + + - name: Display structure of downloaded files + run: ls -R + working-directory: artifacts + + + + + \ No newline at end of file