Skip to content

Commit

Permalink
Debugging somes bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
mjameswh committed Nov 30, 2024
1 parent b1b3e0f commit 7792dd8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@ jobs:
run:
shell: bash
steps:
- run: git config --global core.autocrlf false
# For some unknown reason, execution of TSC may sometime introduce a CRLF/LF mismatch on some
# pure JS files that are preserved in the repo, which would later cause a failure when trying
# to publish packages to Verdaccio, as Lerna requires that the Git repo be clean.
- name: Set git config
run: git config --global core.autocrlf false

- name: 'Checkout code'
uses: actions/checkout@v4
Expand Down Expand Up @@ -191,10 +195,6 @@ jobs:
- name: Compile code
run: npm run build -- --ignore @temporalio/core-bridge

- run: |
git status
git diff | cat
- name: Publish to Verdaccio
run: node scripts/publish-to-verdaccio.js --registry-dir ${{ steps.tmp-dir.outputs.dir }}/npm-registry

Expand Down

0 comments on commit 7792dd8

Please sign in to comment.