Merge pull request #248 from lukso-network/release-please--branches--… #45
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: Create GitHub release and publish to NPM | |
on: | |
push: | |
branches: | |
- 'main' | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release-please: | |
name: release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: ⚙️ Setup Node.js v16 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@lukso' | |
cache: 'npm' | |
- name: 🧰 Install | |
run: npm ci | |
- name: 💅 Lint | |
run: npm run lint | |
- name: 🛠 Build | |
run: npm run build | |
- name: 🎯 Test | |
run: npm run generate-types && npm run test | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
release-type: node | |
package-name: '@lukso/lsp-factory.js' | |
bump-minor-pre-major: true | |
default-branch: main | |
- name: 🔍 Check if version changed | |
uses: EndBug/version-check@v1 | |
if: github.event_name == 'push' | |
id: check | |
- name: 🔄 Check if should release | |
run: echo "SHOULD_RELEASE=${{ steps.check.outputs.changed == 'true' }}" >> $GITHUB_ENV | |
- name: 📦 Publish to NPM | |
if: env.SHOULD_RELEASE == 'true' | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |