Skip to content

Commit

Permalink
ci: disable building package release (#211)
Browse files Browse the repository at this point in the history
Release-As: 0.7.1
  • Loading branch information
holtgrewe authored Jun 9, 2024
1 parent 07fa46e commit d0d4496
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,29 @@ jobs:
with:
token: ${{ secrets.BOT_TOKEN }}

Package-Release:
needs: release-please
runs-on: ubuntu-latest
if: ${{ needs.release-please.outputs.release_created }}
permissions:
packages: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up node 20.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Build package to dist/
run: npm run build

- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
# Package-Release:
# needs: release-please
# runs-on: ubuntu-latest
# if: ${{ needs.release-please.outputs.release_created }}
# permissions:
# packages: write
# contents: read
# steps:
# - name: Checkout repository
# uses: actions/checkout@v4

# - name: Set up node 20.x
# uses: actions/setup-node@v4
# with:
# node-version: "20.x"
# cache: "npm"

# - name: Install dependencies
# run: npm ci

# - name: Build package to dist/
# run: npm run build

# - uses: JS-DevTools/npm-publish@v3
# with:
# token: ${{ secrets.NPM_TOKEN }}

0 comments on commit d0d4496

Please sign in to comment.