We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17931a0 commit 518d001Copy full SHA for 518d001
1 file changed
.github/workflows/release.yaml
@@ -51,4 +51,13 @@ jobs:
51
- uses: actions/upload-artifact@v4
52
with:
53
name: RPM artifact
54
- path: target/generate-rpm/*.rpm
+ path: target/generate-rpm/*.rpm
55
+
56
+ - name: Push to Gitea registry
57
+ run: |
58
+ for pkg in target/generate-rpm/*.rpm; do
59
+ curl -X PUT \
60
+ --user "${{ secrets.GITEA_REGISTRY_TOKEN }}" \
61
+ --upload-file "$pkg" \
62
+ "https://gitea.psi.ch/api/packages/bec/rpm/upload"
63
+ done
0 commit comments