Skip to content

Merge branch 'main' of https://github.com/medyll/css-base #13

Merge branch 'main' of https://github.com/medyll/css-base

Merge branch 'main' of https://github.com/medyll/css-base #13

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: pnpm/action-setup@v4
with:
version: 10.28.0
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Bump patch version
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
pnpm version patch --no-git-tag-version
VERSION=$(node -p "require('./package.json').version")
git add package.json
git commit -m "chore: release v$VERSION [skip ci]"
git push
- name: Release Packages
run: npx @medyll/idae-pnpm-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_2026 }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN_2026 }}