Skip to content

chore(deps): bump nanoid from 3.3.7 to 3.3.8 (#65) #75

chore(deps): bump nanoid from 3.3.7 to 3.3.8 (#65)

chore(deps): bump nanoid from 3.3.7 to 3.3.8 (#65) #75

Workflow file for this run

name: Deploy
on:
push:
branches: ["master"]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.SEMANTIC_RELEASE_PAT }}
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install deps (with cache)
uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --no-progress --ignore-scripts
- name: Release
run: yarn release
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PAT }}