Skip to content

chore: Introduce Common Open Source Tooling into Codebase to Increase Productivity and Developer Experience #2

chore: Introduce Common Open Source Tooling into Codebase to Increase Productivity and Developer Experience

chore: Introduce Common Open Source Tooling into Codebase to Increase Productivity and Developer Experience #2

Workflow file for this run

name: Release
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: πŸ›ŽοΈ Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0 # All history for branches and tags
- name: πŸ“¦ Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: πŸ› οΈ Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
cache: pnpm
- name: πŸ“‚ Install Dependencies
run: pnpm i
- name: πŸ€– Run Semantic Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}
NEXTAUTH_URL: ${{ secrets.NEXTAUTH_URL }}
GOOGLE_CLIENT_ID: ${{ secrets.GOOGLE_CLIENT_ID }}
GOOGLE_CLIENT_SECRET: ${{ secrets.GOOGLE_CLIENT_SECRET }}
run: pnpm exec semantic-release
- name: πŸ’° Profit
run: echo 🐞