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.
1 parent a7237c5 commit 0ce77dcCopy full SHA for 0ce77dc
.github/workflows/continuous-deployment.yml
@@ -73,9 +73,11 @@ jobs:
73
with:
74
script: |
75
let dtag = process.env.tag.split('-')[1] || ''
76
+
77
if (dtag && dtag.includes('.')) dtag = dtag.split('.')[0]
78
+ if (dtag) dtag = `--tag ${dtag}`
79
- core.setOutput('args', `--tag ${dtag}`.trim())
80
+ core.setOutput('args', dtag.trim())
81
publish-package:
82
name: Publish package to GPR & NPM
83
needs: deployment-info
0 commit comments