Skip to content

docs(prettier-config): update README.md #314

docs(prettier-config): update README.md

docs(prettier-config): update README.md #314

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git Config
run: |
git config user.name "github-action"
git config user.email "github-action@noreply.github.com"
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm i
- name: Create Release Pull Request or Publish to Qlik GitHub Packages npm registry
id: changesets
uses: changesets/action@v1
with:
setupGitUser: false
commit: "chore(release): version packages"
title: "chore(release): version packages"
publish: pnpm publish-packages
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_CI_TOKEN }}