fix(ci): remove incompatible artifact upload

This commit is contained in:
2026-07-25 19:48:54 +02:00
parent 5851f3a4fd
commit 26c5af792e
3 changed files with 12 additions and 11 deletions
+3 -5
View File
@@ -30,11 +30,9 @@ jobs:
status="$?" status="$?"
test "$status" = 0 || test "$status" = 124 test "$status" = 0 || test "$status" = 124
- name: Upload Linux binary - name: Verify Linux binary
uses: actions/upload-artifact@v4 shell: bash
with: run: test -x build/searchmyfiles
name: folderscope-linux-amd64
path: build/searchmyfiles
lint-yaml: lint-yaml:
runs-on: [self-hosted, linux, arch, homelab] runs-on: [self-hosted, linux, arch, homelab]
-6
View File
@@ -131,9 +131,3 @@ jobs:
-H "Authorization: token ${GITEA_TOKEN}" \ -H "Authorization: token ${GITEA_TOKEN}" \
-F "attachment=@${asset}" -F "attachment=@${asset}"
done done
- name: Upload workflow artifact
uses: actions/upload-artifact@v4
with:
name: folderscope-linux-amd64
path: dist/*
+9
View File
@@ -5,6 +5,14 @@ All notable changes to FolderScope are documented here.
The project uses [Semantic Versioning](https://semver.org/). Release tags are The project uses [Semantic Versioning](https://semver.org/). Release tags are
formatted as `vMAJOR.MINOR.PATCH`. formatted as `vMAJOR.MINOR.PATCH`.
## [0.2.1] - 2026-07-25
### Fixed
- Removed the incompatible workflow-artifact upload step from Gitea Actions.
- Kept the release gate fail-closed: version validation, build, GUI smoke test,
and YAML lint must all pass before Gitea release assets are published.
## [0.2.0] - 2026-07-25 ## [0.2.0] - 2026-07-25
### Added ### Added
@@ -16,3 +24,4 @@ formatted as `vMAJOR.MINOR.PATCH`.
reporting. reporting.
[0.2.0]: https://gitea.forust.xyz/forust/folderscope/releases/tag/v0.2.0 [0.2.0]: https://gitea.forust.xyz/forust/folderscope/releases/tag/v0.2.0
[0.2.1]: https://gitea.forust.xyz/forust/folderscope/releases/tag/v0.2.1