Skip to content

Commit

Permalink
feat(workflow): auto release test
Browse files Browse the repository at this point in the history
  • Loading branch information
Neox63 committed Jun 4, 2024
1 parent 6a3b30f commit 515ef3f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Release'

on:
push:
branches:
- test-workflow

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
id: 'tag_create'
with:
tag: 'latest'
tag_exists_error: false
message: 'Latest release'
- name: Create Release
uses: ncipollo/release-action@v1.12.0
with:
tag: ${{ steps.tag_create.outputs.tag }}
skipIfReleaseExists: true

0 comments on commit 515ef3f

Please sign in to comment.