Created
March 10, 2021 13:46
-
-
Save shiftgeist/eadc9c2287e8eb1506e7d3814086524b to your computer and use it in GitHub Desktop.
Release to npm and github registry on tag push
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: | |
tags: | |
- '*' | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Use Node (latest) | |
uses: actions/[email protected] | |
with: | |
node_version: 14 | |
- name: Install | |
run: yarn install | |
- name: Build | |
run: yarn code:build | |
- name: Lint | |
run: yarn lint | |
- name: Publish | |
run: sh scripts/publish.sh | |
env: | |
REGISTRY_AUTH_TOKEN: ${{ secrets.REGISTRY_AUTH_TOKEN }} | |
REGISTRY_URL: registry.npmjs.org | |
- name: Create release notes | |
run: sh scripts/github-release.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment