Skip to content

docs: add contract repo link (#279) #117

docs: add contract repo link (#279)

docs: add contract repo link (#279) #117

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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- uses: oven-sh/setup-bun@v2
- name: "Install dependencies"
run: bun install --production --frozen-lockfile
- name: "Release"
run: bunx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}