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 @@ -111,11 +111,11 @@ jobs:
111
111
Write-Error "An error occurred: $_"
112
112
}
113
113
- name : Extract version and add it to env variables
114
- if : ${{ inputs.smoke && matrix.os != 'windows' }}
114
+ if : ${{ matrix.os != 'windows' }}
115
115
run : |
116
116
echo "TESTED_VERSION=$(cat ./TESTED_VERSION.txt)" >> ${GITHUB_ENV}
117
117
- name : Extract version and add it to env variables (Windows)
118
- if : ${{ inputs.smoke && matrix.os == 'windows' }}
118
+ if : ${{ matrix.os == 'windows' }}
119
119
run : |
120
120
try {
121
121
$version = Get-Content -Path .\TESTED_VERSION.txt
Original file line number Diff line number Diff line change 16
16
with :
17
17
smoke : false
18
18
release :
19
- needs : test-build
19
+ needs : e2e
20
20
runs-on : ubuntu-latest
21
21
permissions :
22
22
contents : write
You can’t perform that action at this time.
0 commit comments