Skip to content

Commit 1aff3c4

Browse files
authored
Merge pull request #305 from fractal-analytics-platform/304-add-action-for-github-release
Add github-release action (close #304)
2 parents 9cffbe0 + a5d7e7b commit 1aff3c4

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Create GitHub release
2+
on:
3+
push:
4+
tags:
5+
- '[0-9]+.[0-9]+.[0-9]+'
6+
- '[0-9]+.[0-9]+.[0-9]+[a-c][0-9]+'
7+
- '[0-9]+.[0-9]+.[0-9]+alpha[0-9]+'
8+
- '[0-9]+.[0-9]+.[0-9]+beta[0-9]+'
9+
- '[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Release
18+
uses: softprops/action-gh-release@v1

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
* Added proxy endpoints and refactored error propagation (\#288).
66
* Remove use of deployment-type `fractal-server` variable (\#298).
7+
* Add GitHub action to create GitHub releases (\#305).
78
* Add a BSD3 license (\#300).
89

910
# 0.5.6

0 commit comments

Comments
 (0)