File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 26
26
# old one. If a PR is updated and a new test run is started, the old test run
27
27
# will be cancelled automatically to conserve resources.
28
28
concurrency :
29
- group : ${{ github.workflow }}-${{ inputs.ref || github .ref }}
29
+ group : ${{ github.workflow }}-${{ github.event.number || inputs .ref }}
30
30
cancel-in-progress : true
31
31
32
32
jobs :
Original file line number Diff line number Diff line change 82
82
if : needs.release.outputs.release_created && needs.compute.outputs.latest
83
83
uses : ./.github/workflows/publish-docs.yaml
84
84
with :
85
- ref : ${{ github.ref }}
85
+ ref : refs/tags/ ${{ needs.release.outputs.tag_name }}
86
86
87
87
# Publish official docker image
88
88
docker :
@@ -105,7 +105,7 @@ jobs:
105
105
if : needs.release.outputs.release_created
106
106
uses : ./.github/workflows/build.yaml
107
107
with :
108
- ref : ${{ github.ref }}
108
+ ref : refs/tags/ ${{ needs.release.outputs.tag_name }}
109
109
self_hosted : ${{ needs.settings.outputs.self_hosted != '' }}
110
110
debug : ${{ needs.settings.outputs.debug != '' }}
111
111
You can’t perform that action at this time.
0 commit comments