File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 run : npm test
3737
3838 - name : Publish
39- run : npm publish --provenance --access public --dry-run=${{ inputs.dryRun }}
39+ run : npm publish --provenance --access public --dry-run=${{ inputs.dryRun && 'true' || 'false' }}
4040
4141 - name : GitHub Release
4242 if : ${{ ! inputs.dryRun }}
5151 NPM_AUTH_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
5252 run : |
5353 npm config set "//npm.pkg.github.com/:_authToken=${NPM_PUBLISH_TOKEN}"
54- npm publish --provenance --access public --dry-run=${{ inputs.dryRun }} --registry=https://npm.pkg.github.com/
54+ npm publish --provenance --access public --dry-run=${{ inputs.dryRun && 'true' || 'false' }} --registry=https://npm.pkg.github.com/
Original file line number Diff line number Diff line change @@ -1299,7 +1299,7 @@ export class DockerClient {
12991299 fromImage : ref ,
13001300 fromSrc : options ?. fromSrc ,
13011301 repo : options ?. repo ,
1302- tag : options ?. tag ,
1302+ tag : options ?. tag || 'latest' ,
13031303 message : options ?. message ,
13041304 changes : options ?. changes ,
13051305 platform : options ?. platform ,
You can’t perform that action at this time.
0 commit comments