Skip to content

Commit 7cfbba9

Browse files
author
Agent on behalf of user jgstern
committed
Merge pull request 'ci: add GitHub Actions workflow for release mirroring' (#184) from jgstern-agent/feat/github-release-mirror into dev
2 parents 7c67eec + 680959e commit 7cfbba9

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)