Skip to content

Commit

Permalink
Use new token
Browse files Browse the repository at this point in the history
  • Loading branch information
mliu committed Sep 17, 2024
1 parent 2a3a69f commit 27320d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/production-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Production NPM Packages Publishing
on:
pull_request:
types: [closed]
branches: ['master']
branches: ["master"]

jobs:
deploy-prod:
Expand All @@ -15,14 +15,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.CI_TOKEN }}

- name: Use Node.js 18.13.0
uses: actions/setup-node@v3
with:
node-version: 18.13.0
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
registry-url: "https://registry.npmjs.org"
cache: "yarn"

- name: Cache Yarn dependencies
uses: actions/cache@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/submodule-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Update parent repo

on:
push:
branches:
branches:
- develop

jobs:
Expand All @@ -11,10 +11,10 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
with:
repository: 00labs/huma-dapp
ref: 'develop'
token: ${{ secrets.GH_TOKEN }}
ref: "develop"
token: ${{ secrets.CI_TOKEN }}
submodules: true

- name: Pull & update submodules recursively
Expand Down

0 comments on commit 27320d0

Please sign in to comment.