From a25937ae7988b4719bd155b237dc8b907f2ceaa7 Mon Sep 17 00:00:00 2001 From: cornholio <0@mcornholio.ru> Date: Wed, 26 Feb 2025 11:44:12 +0100 Subject: [PATCH] Fixing revive release artifacts * Stripping "./resolc-out" from linux artifact is weirdly `--strip-components 2`, not `1` * Adding execution bit for macos binary --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83084d0..4da7700 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -143,6 +143,7 @@ jobs: - name: compress macos artifact run: | + chmod +x resolc-macos tar -czf resolc-macos.tar.gz ./resolc-macos - uses: actions/upload-artifact@v4 @@ -212,7 +213,7 @@ jobs: - name: compress musl artifact run: | - tar --strip-components 1 -czf resolc-static-linux.tar.gz ./resolc-out/resolc-static-linux + tar --strip-components 2 -czf resolc-static-linux.tar.gz ./resolc-out/resolc-static-linux - uses: actions/upload-artifact@v4 with: