From 6006227be366d6358eb17a6c280499f2211420c6 Mon Sep 17 00:00:00 2001 From: fxi Date: Wed, 12 Jun 2024 14:16:27 +0200 Subject: [PATCH] Release ci : path issue, log --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58887dc4..bbf50f92 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -237,15 +237,17 @@ jobs: - name: Download All Artifacts uses: actions/download-artifact@v4 with: - path: accessmod + path: ./accessmod pattern: accessmod-* + - name: List downloaded files + run: ls -R ./accessmod + - name: Create GitHub Release id: create_release uses: softprops/action-gh-release@v1 with: - tag_name: ${{ env.AM_VERSION }} - files: ./accessmod/* + tag_name: ${{ env.AM_VERSION }} + files: ./accessmod/* body_path: ./release_notes.md token: ${{ secrets.github_token }} -