Skip to content

feat(go): add changes related to v1 version (#109) #71

feat(go): add changes related to v1 version (#109)

feat(go): add changes related to v1 version (#109) #71

Workflow file for this run

name: release 🚀
on:
push:
branches: [ main ]
env:
HUSKY: 0
CI: true
jobs:
release:
if: ${{ github.event.repository.full_name == github.repository }} && {{ !contains(github.event.head_commit.message, "skip ci") }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- uses: oven-sh/setup-bun@v1
- name: "Install dependencies"
run: bun install --production --frozen-lockfile
- name: "Semantic release"
run: bunx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}