Skip to content

fix: accept --api-key flag for login (#70) #74

fix: accept --api-key flag for login (#70)

fix: accept --api-key flag for login (#70) #74

Workflow file for this run

name: Release
on:
push:
branches:
- main
- next
- alpha
- canary
concurrency: release-${{ github.head_ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20.x.x
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.x.x
- name: Install semantic release
run: |
npm init -y
npm i semantic-release @google/semantic-release-replace-plugin @semantic-release/exec
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}