Skip to content

Update typescript-eslint monorepo to v8.8.0 (#235) #253

Update typescript-eslint monorepo to v8.8.0 (#235)

Update typescript-eslint monorepo to v8.8.0 (#235) #253

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: read
steps:
- name: Checkout repo
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 20
- name: Check package version
id: check
uses: 'EndBug/version-check@36ff30f37c7deabe56a30caa043d127be658c425' # v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
diff-search: true
- name: Create release
uses: 'ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5' # v1
if: ${{ steps.check.outputs.changed == 'true' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag: v${{ steps.check.outputs.version}}
name: v${{ steps.check.outputs.version}}