Skip to content

fix: trigger release with node 20 (#531) #4

fix: trigger release with node 20 (#531)

fix: trigger release with node 20 (#531) #4

Workflow file for this run

name: Release commit-status-updater
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./
with:
name: "release"
- run: npm ci
- run: npm run build
- run: npm run format-check
- run: npm run lint
- run: npm run pack
- run: npm test
- run: npm run semantic-release
- if: always()
uses: ./
with:
name: "release"
status: "${{ job.status }}"