From 27320d02978e7471fd8ff51b8f3e0563e1610814 Mon Sep 17 00:00:00 2001 From: Michael Liu Date: Tue, 17 Sep 2024 18:56:52 -0400 Subject: [PATCH] Use new token --- .github/workflows/production-publish.yml | 8 ++++---- .github/workflows/submodule-update.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/production-publish.yml b/.github/workflows/production-publish.yml index 264eab1b..f3b7eb94 100644 --- a/.github/workflows/production-publish.yml +++ b/.github/workflows/production-publish.yml @@ -3,7 +3,7 @@ name: Production NPM Packages Publishing on: pull_request: types: [closed] - branches: ['master'] + branches: ["master"] jobs: deploy-prod: @@ -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 diff --git a/.github/workflows/submodule-update.yml b/.github/workflows/submodule-update.yml index f805f86a..82f2e951 100644 --- a/.github/workflows/submodule-update.yml +++ b/.github/workflows/submodule-update.yml @@ -2,7 +2,7 @@ name: Update parent repo on: push: - branches: + branches: - develop jobs: @@ -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