Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
spookyuser committed Jan 2, 2025
1 parent 625123b commit 55af06d
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 55af06d

Please sign in to comment.