diff --git a/.github/workflows/production-publish.yml b/.github/workflows/production-publish.yml index f3b7eb9..a839773 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.CI_TOKEN }} + token: ${{ secrets.CI_TOKEN_PUBLIC }} - 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 82f2e95..b357e13 100644 --- a/.github/workflows/submodule-update.yml +++ b/.github/workflows/submodule-update.yml @@ -13,8 +13,8 @@ jobs: - uses: actions/checkout@v3 with: repository: 00labs/huma-dapp - ref: "develop" - token: ${{ secrets.CI_TOKEN }} + ref: 'develop' + token: ${{ secrets.CI_TOKEN_PUBLIC }} submodules: true - name: Pull & update submodules recursively