Skip to content

fix: update workflow #5

fix: update workflow

fix: update workflow #5

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release:
runs-on: ubuntu-latest
steps:
- id: compute_tag
uses: craig-day/compute-tag@v18
with:
github_token: ${{ github.token }}
version_scheme: continuous
version_type: patch
- name: create release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.compute_tag.outputs.next_tag }}
body: >
Automatic release of ${{ steps.compute_tag.outputs.next_tag }}
token: ${{ github.token }}