We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f077633 commit 486b83cCopy full SHA for 486b83c
1 file changed
.github/workflows/release.yml
@@ -60,12 +60,15 @@ jobs:
60
working-directory: packages/core
61
run: pnpm pack
62
63
- - name: Find and rename package file
+ - name: Verify package file
64
65
run: |
66
PKG_FILE=$(ls *.tgz | head -1)
67
echo "Found package: $PKG_FILE"
68
- mv "$PKG_FILE" tracker-core-${{ steps.version.outputs.version }}.tgz
+ TARGET_NAME="tracker-core-${{ steps.version.outputs.version }}.tgz"
69
+ if [ "$PKG_FILE" != "$TARGET_NAME" ]; then
70
+ mv "$PKG_FILE" "$TARGET_NAME"
71
+ fi
72
ls -la *.tgz
73
74
- name: Generate changelog
0 commit comments