diff options
| author | 2026-01-18 21:04:14 +0800 | |
|---|---|---|
| committer | 2026-01-18 21:04:14 +0800 | |
| commit | 6b4b94927a4ed12eec83141ff1bbb516545382c1 (patch) | |
| tree | fff3f0b9d606ccdb16596a75fb425e61a3f6a2d5 /.github/workflows | |
| parent | e7ac28c6b8467a8fca0a3b61ba498e4742d3a718 (diff) | |
| download | DropOut-6b4b94927a4ed12eec83141ff1bbb516545382c1.tar.gz DropOut-6b4b94927a4ed12eec83141ff1bbb516545382c1.zip | |
ci(semifold): use duplicate artifact name
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
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: |