Remove artifact upload step and ZIP build process from Gitea workflows
Some checks failed
CI / test-backend (push) Successful in 4s
OSV-Scanner Scheduled Scan / scan-scheduled (push) Successful in 9s
CI / lint (push) Successful in 9m38s
CI / build-frontend (push) Successful in 9m43s
CI / test-lang (push) Successful in 9m37s
Tests / test (push) Successful in 13m22s
Build Test / Build and Test (push) Failing after 40m52s
Some checks failed
CI / test-backend (push) Successful in 4s
OSV-Scanner Scheduled Scan / scan-scheduled (push) Successful in 9s
CI / lint (push) Successful in 9m38s
CI / build-frontend (push) Successful in 9m43s
CI / test-lang (push) Successful in 9m37s
Tests / test (push) Successful in 13m22s
Build Test / Build and Test (push) Failing after 40m52s
This commit is contained in:
@@ -99,9 +99,3 @@ jobs:
|
||||
sha256sum "$file" | tee "${file}.sha256"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: https://git.quad4.io/actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1
|
||||
with:
|
||||
name: meshchatx-artifacts
|
||||
path: release-assets/*
|
||||
|
||||
@@ -106,9 +106,6 @@ jobs:
|
||||
WINEDEBUG: -all
|
||||
run: pnpm run dist:windows
|
||||
|
||||
- name: Build Electron App (ZIP)
|
||||
run: task build-zip
|
||||
|
||||
- name: Prepare release assets
|
||||
run: |
|
||||
mkdir -p release-assets
|
||||
@@ -117,8 +114,6 @@ jobs:
|
||||
find dist -maxdepth 1 -type f \( -name "*-linux*.AppImage" -o -name "*-linux*.deb" -o -name "*-linux*.rpm" -o -name "*-linux*.flatpak" \) -exec cp {} release-assets/ \;
|
||||
# Windows artifacts
|
||||
find dist -maxdepth 1 -type f \( -name "*-win*.exe" \) -exec cp {} release-assets/ \;
|
||||
# ZIP artifacts from Electron Forge
|
||||
find out/make -type f -name "*.zip" -exec cp {} release-assets/ \;
|
||||
# Python artifacts
|
||||
find python-dist -maxdepth 1 -type f -name "*.whl" -exec cp {} release-assets/ \;
|
||||
|
||||
@@ -181,7 +176,6 @@ jobs:
|
||||
release-assets/*.exe
|
||||
release-assets/*.whl
|
||||
release-assets/*.sha256
|
||||
release-assets/*.zip
|
||||
release-assets/sbom.cyclonedx.json
|
||||
body_path: "release-body.md"
|
||||
draft: true
|
||||
|
||||
Reference in New Issue
Block a user