Skip to content

Run npm-cit on macOS as well (#28) #15

Run npm-cit on macOS as well (#28)

Run npm-cit on macOS as well (#28) #15

Workflow file for this run

name: Tag Major Version
on:
push: { tags: "v*.*.*" }
workflow_dispatch:
workflow_call:
permissions: { contents: write }
jobs:
major:
if: github.ref_type == 'tag' && !contains(github.ref, '-') # skip prereleases
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: git push -f origin "HEAD:${GITHUB_REF%%.*}"