Skip to content

Merge pull request #3 from ludovicm67/docker #1

Merge pull request #3 from ludovicm67/docker

Merge pull request #3 from ludovicm67/docker #1

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install Dependencies
run: npm ci
- name: Create PR or create a new release
id: changesets
uses: changesets/action@v1
with:
publish: npm run release
commit: "chore: release"
title: "Merge to release"
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}