Skip to content

fix(backend): bump backend to fix crlf breaking the parser (#87) #56

fix(backend): bump backend to fix crlf breaking the parser (#87)

fix(backend): bump backend to fix crlf breaking the parser (#87) #56

Workflow file for this run

---
name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
permissions:
id-token: write
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
# v6.0.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: 0
- name: Set up env
run: |
VERSION=${GITHUB_REF_NAME#v}
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Set up pnpm
# v6.0.8
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093
with:
version: 11.5.2
- name: Set up Node.js
# v6.4.0
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e
with:
node-version-file: .node-version
cache: pnpm
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Publish
run: npm publish --access public
- name: Make release
run: |
gh release create v$VERSION -t "v$VERSION" --generate-notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}