Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nckrtl committed Nov 27, 2023
1 parent ea3a8de commit 7a90dcc
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,13 @@ jobs:
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@acherontrading'
- uses: oven-sh/setup-bun@v1
with:
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@nckrtl'
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "Nick Retel"
- run: bun install && bun run build && npm publish --new-version ${{ github.ref_name }}
- run: export NPM_TOKEN_LIVTOFF_UI="${{ secrets.NPM_TOKEN_LIVTOFF_UI }}" bun install && bun run build && npm publish --new-version ${{ github.ref_name }}
env:
BUN_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7a90dcc

Please sign in to comment.