Skip to content

fix(docker): include next.config.ts in build context #4

fix(docker): include next.config.ts in build context

fix(docker): include next.config.ts in build context #4

Workflow file for this run

name: Release
on:
pull_request:
types: [closed]
branches: [main]
jobs:
release:
if: github.event.pull_request.merged == true && github.event.pull_request.head.ref == 'dev'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run release-it
run: npm run release -- --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}