fix(speed): replaced api key package version, 10x speed increase #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: ["main"] | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- name: Install semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.NAPSE_GITHUB_TOKEN }} | |
run: | | |
npm install --save-dev semantic-release | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.NAPSE_GITHUB_TOKEN }} | |
run: npx semantic-release |