diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41cdd84..ac381b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,10 +84,15 @@ jobs: if: startsWith(github.ref, 'refs/tags/') steps: - uses: actions/download-artifact@v3 + with: + path: artifacts + - name: List artifacts + run: ls -R artifacts + - name: Move artifacts + run: | + mv artifacts/*/*.tar.gz ./ - name: Create Release uses: softprops/action-gh-release@v1 with: files: | - yek-x86_64-unknown-linux-gnu.tar.gz - yek-x86_64-apple-darwin.tar.gz - yek-aarch64-apple-darwin.tar.gz \ No newline at end of file + *.tar.gz \ No newline at end of file