We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105bb36 commit f077633Copy full SHA for f077633
1 file changed
.github/workflows/release.yml
@@ -60,10 +60,13 @@ jobs:
60
working-directory: packages/core
61
run: pnpm pack
62
63
- - name: Rename package file
+ - name: Find and rename package file
64
65
run: |
66
- mv tracker-core-*.tgz tracker-core-${{ steps.version.outputs.version }}.tgz
+ PKG_FILE=$(ls *.tgz | head -1)
67
+ echo "Found package: $PKG_FILE"
68
+ mv "$PKG_FILE" tracker-core-${{ steps.version.outputs.version }}.tgz
69
+ ls -la *.tgz
70
71
- name: Generate changelog
72
id: changelog
0 commit comments