-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: hardcode git config for release.yml
- Loading branch information
1 parent
f3567bd
commit c3f2e68
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,13 +11,14 @@ jobs: | |
ref: main | ||
- uses: ./.github/actions/prepare | ||
- run: pnpm build | ||
- run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Josh Goldberg" | ||
npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- env: | ||
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npx release-it --preRelease=beta | ||
- run: npx release-it --preRelease=beta | ||
|
||
name: Release | ||
|
||
|