Skip to content

fix: add zsh autosuggestions and syntax highlighting #35

fix: add zsh autosuggestions and syntax highlighting

fix: add zsh autosuggestions and syntax highlighting #35

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup semantic-release
run: |
npm i @semantic-release/changelog \
@semantic-release/git \
semantic-release-export-data
- name: calculate next version
run: npx semantic-release --dry-run
id: next-version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}