Skip to content

merge: integra main remoto (v2.3.0) com velocimetro em tempo real #9

merge: integra main remoto (v2.3.0) com velocimetro em tempo real

merge: integra main remoto (v2.3.0) com velocimetro em tempo real #9

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: |
web/pnpm-lock.yaml
.release/package.json
- name: Install dependencies (Release tools)
working-directory: .release
run: pnpm install --no-frozen-lockfile
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_PATH: ${{ github.workspace }}/.release/node_modules
run: ./.release/node_modules/.bin/semantic-release --extends ./.release/release.config.cjs