diff --git a/.gitea/workflows/self-publish.yml b/.gitea/workflows/self-publish.yml index eb0aedc..ec6e6be 100644 --- a/.gitea/workflows/self-publish.yml +++ b/.gitea/workflows/self-publish.yml @@ -17,6 +17,8 @@ jobs: # # (And the token should be retrieved from Vault) # Using `github.ref` just in case there's any race condition ambiguity. + - run: | + echo "DEBUG - github.ref is ${{ github.ref }}" - uses: https://gitea.scubbo.org/scubbo/commit-report-sync@${{ github.ref}} with: target_repo_domain: github.com diff --git a/dist/index.js b/dist/index.js index a4e322e..9d7cf3f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -25714,6 +25714,7 @@ function getCommitsSinceLatestBeforeGivenDate(dir, date) { catch (e) { // Just in case the error is not an `ExecSyncError` - print it out so we can see what it is. console.log(e); + console.log(`DEBUG - e is ${e}`); const error = e; // No commits in the target repo - return an empty array, which will result in the first representative commit // being made as the first commit. And then we can iterate as normal (recalling that the target history is diff --git a/node_modules/@vercel/ncc/dist/ncc/cli.js.cache b/node_modules/@vercel/ncc/dist/ncc/cli.js.cache index add4fe8..50cc3a0 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/cli.js.cache and b/node_modules/@vercel/ncc/dist/ncc/cli.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/index.js.cache b/node_modules/@vercel/ncc/dist/ncc/index.js.cache index 751e794..f5eb1f9 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/index.js.cache and b/node_modules/@vercel/ncc/dist/ncc/index.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache index 9b0ab6c..1e6ec6e 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/relocate-loader.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache index 37cac51..b22bac1 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/shebang-loader.js.cache differ diff --git a/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache b/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache index 2e4ee79..17527b2 100644 Binary files a/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache and b/node_modules/@vercel/ncc/dist/ncc/loaders/ts-loader.js.cache differ diff --git a/src/git.ts b/src/git.ts index cf822d9..e977fbe 100644 --- a/src/git.ts +++ b/src/git.ts @@ -69,6 +69,7 @@ export function getCommitsSinceLatestBeforeGivenDate(dir: string, date: Date): C } catch (e) { // Just in case the error is not an `ExecSyncError` - print it out so we can see what it is. console.log(e); + console.log(`DEBUG - e is ${e}`); const error = e as ExecSyncError // No commits in the target repo - return an empty array, which will result in the first representative commit // being made as the first commit. And then we can iterate as normal (recalling that the target history is