Skip to content

v33.0.0

v33.0.0 #63

Workflow file for this run

name: Publish to GitHub registry
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: 🏗 Run replace-in-file
run: npx replace-in-file "eslint-config-iamnapo" "@iamnapo/eslint-config-iamnapo" package.json
- name: ⎔ Setup node
uses: actions/setup-node@v4
with:
node-version: 21
registry-url: "https://npm.pkg.github.com"
scope: "@iamnapo"
- name: 🚀 Release
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}