From d62112b0d1a8fc67995f12290393caf4b1f8ccbb Mon Sep 17 00:00:00 2001 From: barslev Date: Mon, 15 Sep 2025 13:33:03 +0200 Subject: [PATCH 1/2] Run git status to check what files are tracked --- .github/workflows/provenance.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/provenance.yml b/.github/workflows/provenance.yml index 0ddd6ed28..3f562d568 100644 --- a/.github/workflows/provenance.yml +++ b/.github/workflows/provenance.yml @@ -40,6 +40,7 @@ jobs: - run: INLINED_SOCKET_CLI_PUBLISHED_BUILD=1 INLINED_SOCKET_CLI_LEGACY_BUILD=1 pnpm run build:dist env: SOCKET_CLI_DEBUG: ${{ inputs.debug }} + - run: git status - run: pnpm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From 7f95ee4c92cc451f088619a4b284d8d5c9016fcd Mon Sep 17 00:00:00 2001 From: barslev Date: Mon, 15 Sep 2025 13:36:21 +0200 Subject: [PATCH 2/2] Run git diff to see changes to file --- .github/workflows/provenance.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/provenance.yml b/.github/workflows/provenance.yml index 3f562d568..f4f5d47e4 100644 --- a/.github/workflows/provenance.yml +++ b/.github/workflows/provenance.yml @@ -4,13 +4,13 @@ on: workflow_dispatch: inputs: debug: - description: 'Enable debug output' + description: "Enable debug output" required: false - default: '0' + default: "0" type: string options: - - '0' - - '1' + - "0" + - "1" jobs: build: runs-on: ubuntu-latest @@ -27,10 +27,10 @@ jobs: run_install: false - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 with: - node-version: '22' - registry-url: 'https://registry.npmjs.org' + node-version: "22" + registry-url: "https://registry.npmjs.org" cache: pnpm - scope: '@socketsecurity' + scope: "@socketsecurity" - run: pnpm install --frozen-lockfile - run: INLINED_SOCKET_CLI_PUBLISHED_BUILD=1 pnpm run build:dist - run: pnpm publish --provenance --access public @@ -41,6 +41,7 @@ jobs: env: SOCKET_CLI_DEBUG: ${{ inputs.debug }} - run: git status + - run: git diff - run: pnpm publish --provenance --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}