Skip to content

chore: bump micromatch from 4.0.7 to 4.0.8 in the npm_and_yarn group … #46

chore: bump micromatch from 4.0.7 to 4.0.8 in the npm_and_yarn group …

chore: bump micromatch from 4.0.7 to 4.0.8 in the npm_and_yarn group … #46

Workflow file for this run

name: publish
on:
workflow_dispatch: {}
push:
branches:
- main
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
release:
outputs:
release_created: ${{ steps.release.outputs.release_created }}
version: ${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
id: release
publish:
if: ${{ needs.release.outputs.release_created }}
needs: [release]
runs-on: ubuntu-latest
environment:
name: NPM
url: https://www.npmjs.com/package/pg-error-enum/v/${{ needs.release.outputs.version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# waiting on: https://github.com/actions/setup-node/issues/531
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
cache: "yarn"
- run: yarn install --immutable
- env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# yarn doesn't have an equivalent --provenance
run: npm publish --provenance --access public