Skip to content

ci: update workflows and add versioning pipeline with Go 1.23.6 update #1

ci: update workflows and add versioning pipeline with Go 1.23.6 update

ci: update workflows and add versioning pipeline with Go 1.23.6 update #1

Workflow file for this run

name: Versioning
on:
push:
branches:
- main
permissions:
contents: 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