Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyie committed Jun 7, 2024
1 parent 3499701 commit 220bc05
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/deploy-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
release_candidate:
deploy:
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand All @@ -20,4 +20,10 @@ jobs:
uses: ./.github/actions/setup

- name: Build Project
run: npm run deploy
run: |
git config --global user.name "$GITHUB_ACTOR"
git config --global user.email "[email protected]"
npm run deploy
env:
GIT_USER: $GITHUB_ACTOR
GIT_PASS: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 220bc05

Please sign in to comment.