Skip to content

Commit 98b1ca9

Browse files
authored
Merge pull request #38 from cloudogu/change_license_to_AGPL3.0
Change license to agpl3.0
2 parents 6138594 + 079b60a commit 98b1ca9

File tree

3 files changed

+722
-29
lines changed

3 files changed

+722
-29
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Create release
2+
3+
on:
4+
push:
5+
tags: [ '*' ]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
release:
12+
name: Release pushed tag
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Create release
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
tag: ${{ github.ref_name }}
19+
run: |
20+
gh release create "$tag" \
21+
--repo="$GITHUB_REPOSITORY" \
22+
--title="${tag}" \
23+
--generate-notes

0 commit comments

Comments
 (0)