Skip to content

fix(package): change description of package to bump patch version #33

fix(package): change description of package to bump patch version

fix(package): change description of package to bump patch version #33

Workflow file for this run

name: Release docker-manager-library to npm
on:
push:
branches:
- "master"
permissions:
contents: write
issues: write
packages: write
actions: write
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build library
run: pnpm build
- name: Add working directory to git as safe directory
run: |
git config --global --add safe.directory "${PWD}"
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: pnpm dlx semantic-release