Skip to content

fix: wide typescript-eslint to 7.x versions #39

fix: wide typescript-eslint to 7.x versions

fix: wide typescript-eslint to 7.x versions #39

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
if: "!contains(github.event.head_commit.message, 'chore(release)')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.TRAMVAI_LINTERS_PAT }}
fetch-depth: 0
- name: Git Identity
run: |
git config --global user.name 'tramvaijsorg'
git config --global user.email '[email protected]'
- uses: actions/setup-node@v2
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- name: Clean install
run: npm ci
- name: Create release commit and tag
run: |
npm run version -- --no-push
- name: Push release commit and tag
run: git push --follow-tags
- name: Publish packages
run: npm run publish:ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}