Skip to content

Commit

Permalink
ci: update registry url
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Nov 9, 2024
1 parent 18012be commit 0183cc7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Set npm access token for GitHub registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
run: echo "//npm.registry.capawesome.io/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- name: Install Node.js dependencies
run: npm ci
- name: Build web assets
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
distribution: "zulu"
java-version: ${{ env.JAVA_VERSION }}
- name: Set npm access token for GitHub registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
run: echo "//npm.registry.capawesome.io/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- name: Install dependencies
run: npm ci
- name: Copy web assets to native platform
Expand All @@ -89,7 +89,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Set npm access token for GitHub registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
run: echo "//npm.registry.capawesome.io/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- name: Install Node.js dependencies
run: npm ci
- name: Copy web assets to native platform
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Set npm access token for GitHub registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
run: echo "//npm.registry.capawesome.io/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- name: Install Node.js dependencies
run: npm ci
- name: Run ESLint and Prettier
Expand All @@ -135,7 +135,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
- name: Set npm access token for GitHub registry
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
run: echo "//npm.registry.capawesome.io/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
- name: Install dependencies
run: npm ci
- name: Run unit tests
Expand Down

0 comments on commit 0183cc7

Please sign in to comment.