Skip to content

Commit

Permalink
more diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Mar 4, 2024
1 parent 8773f14 commit 3eed8fc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,22 @@ jobs:
- name: Install Dependencies
shell: bash
run: npm ci
- name: Diagnostics
shell: bash
run: |
ls -al
ls -al dist
working-directory: ./pkgs/cargo-messages
- name: Pack
id: pack
shell: bash
run: echo "filename=$(npm pack --pack-destination=dist)" >> $GITHUB_OUTPUT
run: echo "filename=$(npm pack --pack-destination=./dist)" >> $GITHUB_OUTPUT
working-directory: ./pkgs/cargo-messages
- name: Diagnostics
shell: bash
run: |
jq -r .version < package.json
ls -al dist
cat update-platforms.log
working-directory: ./pkgs/cargo-messages
- name: Release
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ jobs:
keys-case: bypass
- name: Diagnostics
shell: bash
run: git log -10
run: |
echo 'needs.setup.outputs.tag=${{ needs.setup.outputs.tag }}'
git log -10
- name: Install Node
uses: actions/setup-node@v3
with:
Expand All @@ -170,6 +172,10 @@ jobs:
tag: ${{ needs.setup.outputs.tag }}
fileName: "*.tgz"
out-file-path: ./pkgs/cargo-messages/dist
- name: Diagnostics
shell: bash
run: ls -al
working-directory: ./pkgs/cargo-messages/dist
- name: Publish (cargo-messages)
shell: bash
env:
Expand Down

0 comments on commit 3eed8fc

Please sign in to comment.