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 8816849 commit c778d1cCopy full SHA for c778d1c
.github/workflows/release.yml
@@ -53,13 +53,14 @@ jobs:
53
github-token: ${{ secrets.GITHUB_TOKEN }}
54
script: |
55
try {
56
+ const tags = ${{ steps.get-tags.outputs.tags }};
57
const result = await github.rest.actions.createWorkflowDispatch({
58
owner: 'patternfly',
59
repo: 'patternfly-elements',
60
workflow_id: 'bundle.yml',
61
ref: 'main',
62
inputs: {
- tags: '${{ steps.get-tags.outputs.tags }}'
63
+ tags
64
},
65
})
66
console.log(result);
0 commit comments