chore: remove prividium licensing and explorer pages (#519) #303
This file contains hidden or 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") }} | ||
|
Check warning on line 13 in .github/workflows/release.yml
|
||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| with: | ||
| fetch-depth: 0 | ||
| persist-credentials: false | ||
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6 | ||
| with: | ||
| node-version: 'latest' | ||
| - uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2 | ||
| - name: "Install dependencies" | ||
| run: bun install --production --frozen-lockfile | ||
| - name: "Release" | ||
| run: bunx semantic-release | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||