Skip to content

Commit c8cfaae

Browse files
Added release pipeline (#11)
1 parent 7b23353 commit c8cfaae

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.github/workflows/release.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
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: release
17+
uses: actions/create-release@v1
18+
id: create_release
19+
env:
20+
GITHUB_TOKEN: ${{ github.token }}
21+
with:
22+
tag_name: ${{ github.ref }}
23+
release_name: ${{ github.ref_name }}
24+
body_path: RELEASE_NOTES.md
25+
draft: false
26+
prerelease: false
27+
28+
- name: Upload Release Assets
29+
uses: AButler/upload-release-assets@v3.0
30+
with:
31+
repo-token: ${{ github.token }}
32+
release-tag: ${{ github.ref_name }}
33+
files: '**/*.json'

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#### 1.0.0 April 2nd 2025 ####
2+
3+
Initial release

0 commit comments

Comments
 (0)