-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: fixes issue with npm token not being in memory
- Loading branch information
1 parent
2ccbc1e
commit 18a1d3d
Showing
1 changed file
with
11 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 |
---|---|---|
|
@@ -10,21 +10,28 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16' | ||
registry-url: 'https://registry.npmjs.org' | ||
scope: '@geometricpanda' | ||
|
||
- name: Setup Git | ||
run: | | ||
git config user.name "GitHub Bot" | ||
git config user.email "[email protected]" | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn nx run angular-tilt:build:production | ||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Version | ||
shell: bash | ||
run: yarn nx affected --base=last-release --target=version | ||
run: npx nx affected --base=last-release --target=version | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
|
||
- name: Tag last-release | ||
shell: bash | ||
run: | | ||
|