fix: install on build #7
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: | |
- master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
tag: | |
name: Tag with semantic release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure git user | |
run: | | |
git config user.name "${{ github.actor }}" | |
git config user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: Tag semantic release | |
id: tag | |
uses: pixelfusion/actions/tag@v1 | |
- name: Run release | |
shell: bash | |
run: make release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |