Skip to content

fix(require-setup-store-properties-export): correctly recognize renam… #53

fix(require-setup-store-properties-export): correctly recognize renam…

fix(require-setup-store-properties-export): correctly recognize renam… #53

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: read
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
cache: npm
- name: Install dependencies
run: npm clean-install
# - name: Verify the integrity of deps
# run: npm audit signatures
- run: npm run test:ci
- run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release@latest