Skip to content

Commit e2f70c1

Browse files
authored
trying to get these actions down (#14)
1 parent 71f9643 commit e2f70c1

File tree

2 files changed

+12
-25
lines changed

2 files changed

+12
-25
lines changed

.github/workflows/release.yml

-25
This file was deleted.

.github/workflows/tag.yml

+12
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,19 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
1212
- name: Bump version and push tag
13+
id: tag_release
1314
uses: anothrNick/[email protected]
1415
env:
1516
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1617
DEFAULT_BUMP: minor
18+
- name: Create Release
19+
id: create_release
20+
uses: actions/create-release@latest
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
with:
24+
tag_name: ${{ steps.tage_release.outputs.tag }}
25+
release_name: Release ${{ steps.tage_release.outputs.tag }}
26+
body: GitHub Actions Release
27+
draft: false
28+
prerelease: false

0 commit comments

Comments
 (0)