From 55af06dcd619dbc5e4b37a07ebd6d7d9e98641e3 Mon Sep 17 00:00:00 2001 From: caleb <16196262+spookyuser@users.noreply.github.com> Date: Thu, 2 Jan 2025 14:38:17 +0200 Subject: [PATCH] Remove comments --- .github/workflows/publish.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ecbae60..aa16b85 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,26 +12,21 @@ jobs: steps: - uses: actions/checkout@v3 - # Setup Bun - name: Setup Bun uses: oven-sh/setup-bun@v1 with: - bun-version: latest # Or specify a specific version like '1.0.0' + bun-version: latest - # Install dependencies using Bun - name: Install dependencies run: bun install - # Build package using Bun (adjust if needed) - name: Build package - run: bun run build # Assuming you have a 'build' script in your package.json + run: bun run build - # Configure npm registry and authentication - name: Setup .npmrc run: | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc - # Publish package using Bun (with fallbacks) - name: Publish package run: | if ! command -v bunx &> /dev/null; then