From da3e8e59003415bb182d542f015062ae9b716efe Mon Sep 17 00:00:00 2001 From: Tobias Berger Date: Tue, 20 Sep 2022 16:02:59 +0200 Subject: [PATCH] Hopefully fix release action --- .github/workflows/release.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index eccd587..8ff8f12 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -153,10 +153,14 @@ jobs: name: worlds-rs-macos-12-minimal path: ~/download/worlds-rs-macos-12-minimal.zip + - name: List artifacts + run: | + ls -la --color=auto /home/runner/download/ + - name: Upload binaries uses: softprops/action-gh-release@v1 with: - files: ~/download/* + files: /home/runner/download/* prerelease: true tag_name: "pre-release" generate_release_notes: true \ No newline at end of file