Compare commits

...

3 Commits

Author SHA1 Message Date
hobokenchicken 7fc5d66b8c fix(ci): recursively glob artifact files to prevent empty releases
Release Desktop Apps / build-linux (push) Failing after 11m16s
Release Desktop Apps / release (push) Has been cancelled
Release Desktop Apps / build-windows (push) Has been cancelled
2026-07-16 12:47:45 -04:00
hobokenchicken 7a6b4f961a fix(ci): correct rustup download URL for windows
Release Desktop Apps / build-linux (push) Successful in 2m45s
Release Desktop Apps / build-windows (push) Successful in 3h21m29s
Release Desktop Apps / release (push) Successful in 10s
2026-07-16 12:22:18 -04:00
hobokenchicken 71ee9c59c4 fix(ci): use valid release action (softprops/action-gh-release)
Release Desktop Apps / build-windows (push) Failing after 3h0m44s
Release Desktop Apps / build-linux (push) Successful in 2m42s
Release Desktop Apps / release (push) Has been skipped
2026-07-16 12:17:30 -04:00
+8 -5
View File
@@ -46,7 +46,7 @@ jobs:
cache-dependency-path: 'web/package-lock.json'
- name: Install Rust
run: |
curl.exe -sLO https://win.rustup.rs/x86_64/rustup-init.exe
curl.exe -sLo rustup-init.exe https://win.rustup.rs/x86_64
rustup-init.exe -y --default-toolchain stable --profile minimal
set PATH=%USERPROFILE%\.cargo\bin;%PATH%
rustc --version
@@ -76,11 +76,14 @@ jobs:
steps:
- uses: actions/download-artifact@v3
- name: Create release
uses: actions/gitea-release-action@v3
uses: softprops/action-gh-release@v2
env:
GITEA_TOKEN: ${{ secrets.RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
files: |
linux-bundles/*
windows-bundles/*
linux-bundles/**/*.AppImage
linux-bundles/**/*.deb
linux-bundles/**/*.rpm
windows-bundles/**/*.msi
windows-bundles/**/*.exe