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

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix script
Browse files Browse the repository at this point in the history
Zyie committed Jun 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 3499701 commit 514df80
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/deploy-build.yaml
Original file line number Diff line number Diff line change
@@ -5,8 +5,12 @@ on:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true

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

- name: Build Project
run: npm run deploy
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
npm run deploy

0 comments on commit 514df80

Please sign in to comment.