Skip to content

fix: install on build #7

fix: install on build

fix: install on build #7

Workflow file for this run

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 }}