Skip to content

Merge pull request #38 from khaykingleb/supabase-integration #64

Merge pull request #38 from khaykingleb/supabase-integration

Merge pull request #38 from khaykingleb/supabase-integration #64

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
timeout-minutes: 5
name: Run release
steps:
- name: Checkout code so that it is available to use in the executing runner
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 21.7.3
- name: Install Semantic Release and plugins
run: |
npm install -g [email protected] \
[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected]
- name: Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.PAT_GITHUB }}