We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c10973 + dcf9843 commit b25ec1bCopy full SHA for b25ec1b
templates/steps/cd.yml
@@ -6,7 +6,7 @@ steps:
6
- ${{ if eq(parameters.unityProject, 'true') }}:
7
- bash: |
8
npm pack 2>/dev/null
9
- tarball=$(/usr/bin/find . -name "*.tgz")
+ tarball=$(find . -name "*.tgz")
10
tarballFilePaths=$(tar -tf $tarball)
11
12
while read -r filePath
@@ -319,7 +319,7 @@ steps:
319
displayName: Create semantic-release.config.js
320
321
cat > npm-tarball-to-zip.sh <<- "EOF"
322
323
zipName=$(echo $tarball | sed -e "s/\.[^.]*$//").zip
324
files=$(tar -tf $tarball | sed "s/^package\\///")
325
npx --no-install --cache ../node_modules bestzip $zipName $files
0 commit comments