Skip to content

fix workflow

fix workflow #7

Workflow file for this run

name: Versioning
on:
push:
branches:
- main
permissions:
contents: write
packages: write
jobs:
versioning:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Calculate version
id: calculate-version
uses: bitshifted/git-auto-semver@v1
with:
main_branch: main
create_tag: true
tag_prefix: "v"
release:
needs: [versioning]
uses: ./.github/workflows/release.yml
secrets: inherit