fixbluesky/.forgejo/workflows/semver.yml
Rose e16300aeb2
Some checks failed
Build Docker Image / build-image (push) Failing after 38s
Semver / semver (push) Failing after 5s
💚 try ci again hopefully
2024-10-16 11:52:45 -05:00

27 lines
584 B
YAML

name: Semver
on:
push:
branches:
- "**"
jobs:
semver:
runs-on: ubuntu-latest
steps:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Setup Yarn
run: |
yarn set version canary
yarn config set nodeLinker node-modules
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: yarn install
run: yarn install --immutable
- name: Semver
run: yarn run semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}