diff options
| -rw-r--r-- | .changes/config.toml | 1 | ||||
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 9 |
2 files changed, 6 insertions, 4 deletions
diff --git a/.changes/config.toml b/.changes/config.toml index 8df2c64..d8dd8d2 100644 --- a/.changes/config.toml +++ b/.changes/config.toml @@ -18,6 +18,7 @@ version-mode = { pre-release.tag = "alpha" } path = "src-tauri" resolver = "rust" version-mode = { pre-release.tag = "alpha" } +assets = ["artifacts/*"] [resolver.rust.pre-check] url = "https://crates.io/api/v1/crates/{{ package.name }}/{{ package.version }}" diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index a8207b3..dccf884 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -43,9 +43,6 @@ jobs: args: "--target aarch64-pc-windows-msvc" runs-on: ${{ matrix.platform }} - container: - image: ${{ matrix.container }} - options: --user root steps: - uses: actions/checkout@v6 @@ -134,15 +131,18 @@ jobs: if: runner.os == 'Linux' uses: actions/upload-artifact@v6 with: + name: linux-${{ matrix.target }}-artifacts path: | target/${{ matrix.target }}/release/bundle/appimage/*.AppImage target/${{ matrix.target }}/release/bundle/deb/*.deb + target/${{ matrix.target }}/release/bundle/appimage/*.rpm retention-days: 1 - name: Upload Artifact (Windows) if: runner.os == 'Windows' uses: actions/upload-artifact@v6 with: + name: windows-${{ matrix.target }}-artifacts path: | target/${{ matrix.target }}/release/bundle/msi/*.msi target/${{ matrix.target }}/release/bundle/nsis/*.exe @@ -152,9 +152,10 @@ jobs: if: runner.os == 'macOS' uses: actions/upload-artifact@v6 with: + name: macos-${{ matrix.target }}-artifacts path: | target/${{ matrix.target }}/release/bundle/dmg/*.dmg - target/${{ matrix.target }}/release/bundle/macos/DropOut.app + target/${{ matrix.target }}/release/bundle/macos/*.app.tar.gz retention-days: 1 release: |