File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -935,8 +935,14 @@ jobs:
935
935
with :
936
936
name : icuexportdata_output
937
937
path : icuexportdata_*.zip
938
- - name : Upload to release
939
- if : ${{ inputs.gitReleaseTag && (startsWith(inputs.gitReleaseTag, 'release-') || startsWith(input.gitReleaseTag, 'icu4x/')) }}
938
+ - name : Upload to release tag
939
+ if : ${{ inputs.gitReleaseTag && startsWith(inputs.gitReleaseTag, 'release-') }}
940
+ run : |
941
+ gh release upload ${{ inputs.gitReleaseTag }} icuexportdata_*.zip --clobber
942
+ env :
943
+ GH_TOKEN : ${{ github.token }}
944
+ - name : Upload to icu4x tag
945
+ if : ${{ inputs.gitReleaseTag && startsWith(input.gitReleaseTag, 'icu4x/') }}
940
946
run : |
941
947
gh release upload ${{ inputs.gitReleaseTag }} icuexportdata_*.zip --clobber
942
948
env :
You can’t perform that action at this time.
0 commit comments