diff --git a/.github/workflows/publish-packages.yaml b/.github/workflows/publish-packages.yaml index a9a94340c..7e3c86daf 100644 --- a/.github/workflows/publish-packages.yaml +++ b/.github/workflows/publish-packages.yaml @@ -7,6 +7,9 @@ on: concurrency: ${{ github.workflow }}-${{ github.ref }} +env: + NPM_TOKEN: "" + jobs: publish: name: Publish @@ -19,8 +22,6 @@ jobs: with: node-version-file: ".nvmrc" cache: "yarn" - env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} # Install the dependencies without running the post-install scripts - name: Install Dependencies @@ -31,8 +32,6 @@ jobs: # Run the post-install scripts - name: Build Dependencies run: yarn install --frozen-lockfile --offline - env: - NPM_TOKEN: "" # Cache build artifacts from turbo # diff --git a/.github/workflows/vape-test.yml b/.github/workflows/vape-test.yml index 2bbb89e10..8ba373e9a 100644 --- a/.github/workflows/vape-test.yml +++ b/.github/workflows/vape-test.yml @@ -10,6 +10,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true +env: + NPM_TOKEN: "" + jobs: build-and-test: runs-on: ubuntu-latest @@ -21,8 +24,6 @@ jobs: with: node-version-file: ".nvmrc" cache: "yarn" - env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} # Install the dependencies without running the post-install scripts - name: Install Dependencies @@ -33,8 +34,6 @@ jobs: # Run the post-install scripts - name: Build Dependencies run: yarn install --frozen-lockfile --offline - env: - NPM_TOKEN: "" # Cache build artifacts from turbo #