Skip to content

docs: update readme

docs: update readme #2

name: Continuous Delivery
on:
push:
branches:
- main
jobs:
Publish:
name: Publish Next
runs-on: ubuntu-latest
if: false
steps:
- name: Checkout Project
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Add TypeScript problem matcher
run: echo "::add-matcher::.github/problemMatchers/tsc.json"
- name: Use Node.js v20
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
registry-url: https://registry.yarnpkg.com/
- name: Install Dependencies
run: yarn --immutable
- name: Bump version
run: yarn bump --preid "next.$(git rev-parse --verify --short HEAD)" --skip-changelog
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}