feat(go): add changes related to v1 version (#109) #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |