Skip to content

feat(workflow): auto release test #1

feat(workflow): auto release test

feat(workflow): auto release test #1

Workflow file for this run

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/[email protected]
with:
tag: ${{ steps.tag_create.outputs.tag }}
skipIfReleaseExists: true