Skip to content

Release Package

Release Package #1

Workflow file for this run

name: Release Package
on:
release:
types: [released]
jobs:
publish-to-npm-registry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
# first set the versions of our package to the release version
- run: pnpm version ${{github.ref_name}}
working-directory: packages/steps-s3-copy
# build and package
- run: pnpm run build
- run: pnpm run package
# if all the builds have completed - we can publish the package
- run: pnpm exec publib-npm
working-directory: packages/steps-s3-copy
env:
NPM_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
NPM_ACCESS_LEVEL: public