From 2e90190a9770be6d0c11b0d013f65bfe2778dfdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81d=C3=A1m=20Kov=C3=A1cs?= Date: Mon, 19 Dec 2022 17:27:46 +0100 Subject: [PATCH] Release --- .github/workflows/github-actions-demo.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 160ed30..1833be7 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -28,3 +28,19 @@ jobs: with: name: alma-${{ matrix.target.name }} path: app/Alma + + release: + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v3 + with: + name: alma-windows + path: app/windows/ + - uses: actions/download-artifact@v3 + with: + name: alma-linux + path: app/linux/ + + - name: Display structure of downloaded files + run: ls -R + working-directory: app