Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.

Commit da1e474

Browse files
Merge pull request #107 from InvalidArgument3/tag-test
Tag test
2 parents d99700d + 5462522 commit da1e474

3 files changed

Lines changed: 23 additions & 1 deletion

File tree

.github/workflows/UniversalUpload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Aristeas UniversalUpload Test
1+
name: Aristeas UniversalUpload
22
on:
33
workflow_dispatch:
44
push:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: 'changelog-generator'
2+
on:
3+
workflow_dispatch:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
release:
10+
if: startsWith(github.ref, 'refs/tags/')
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Build Changelog
14+
id: github_release
15+
uses: mikepenz/release-changelog-builder-action@v4
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
19+
- name: Create Release
20+
uses: mikepenz/action-gh-release@v0.2.0-a03 #softprops/action-gh-release
21+
with:
22+
body: ${{steps.github_release.outputs.changelog}}

test.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)