fix: less whitespace in debug
#45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
jobs: | |
release-branch: | |
name: Publish branch | |
runs-on: ubuntu-latest | |
# needs: test | |
if: ${{ github.event_name == 'push' }} | |
environment: Production | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: pnpm/[email protected] | |
- uses: actions/setup-node@v3 | |
with: | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm release | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | |
DRY_RUN: 1 | |
VERBOSE: 1 |