We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c67eec + 680959e commit 7cfbba9Copy full SHA for 7cfbba9
1 file changed
.github/workflows/release-mirror.yml
@@ -0,0 +1,23 @@
1
+name: Mirror Release from Codeberg
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+jobs:
9
+ create-release:
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ contents: write
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Create GitHub Release
17
+ uses: softprops/action-gh-release@v2
18
+ with:
19
+ generate_release_notes: true
20
+ body: |
21
+ This release was automatically mirrored from [Codeberg](https://codeberg.org/iterabloom/hypergumbo).
22
23
+ For the canonical release, see: https://codeberg.org/iterabloom/hypergumbo/releases/tag/${{ github.ref_name }}
0 commit comments