Merge pull request #405 from ERC725Alliance/release-please--branches-… #51
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: 📦 Create GitHub release and publish to NPM | |
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: '@erc725' | |
cache: 'npm' | |
- name: 🧰 Install | |
run: npm ci | |
- name: 💅 Lint | |
run: npm run lint | |
- name: 🎯 Test | |
run: npm test | |
- name: 🛠 Build | |
run: npm run build | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
release-type: node | |
package-name: '@erc725/erc725.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 }} |