Skip to content

Commit

Permalink
add debug git command
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Nov 21, 2023
1 parent db13d43 commit c93ebaf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-non-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ jobs:
run: npm install
- name: Set Version
id: set-version
run: npm version $(node -p -e "require('./package.json').version")-${{inputs.separator}}$(echo ${{ github.sha }} | cut -c -10)
run: |
git status
npm version $(node -p -e "require('./package.json').version")-${{inputs.separator}}$(echo ${{ github.sha }} | cut -c -10)
git status
- name: Build
env:
PUBLIC_URL: "/${{ needs.branch-sha.outputs.value }}/advance-tools"
Expand Down

0 comments on commit c93ebaf

Please sign in to comment.