Skip to content

Commit f7ebbe2

Browse files
committed
ci: fixed missing steps
1 parent ed7d494 commit f7ebbe2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ jobs:
111111
Write-Error "An error occurred: $_"
112112
}
113113
- name: Extract version and add it to env variables
114-
if: ${{ inputs.smoke && matrix.os != 'windows' }}
114+
if: ${{ matrix.os != 'windows' }}
115115
run: |
116116
echo "TESTED_VERSION=$(cat ./TESTED_VERSION.txt)" >> ${GITHUB_ENV}
117117
- name: Extract version and add it to env variables (Windows)
118-
if: ${{ inputs.smoke && matrix.os == 'windows' }}
118+
if: ${{ matrix.os == 'windows' }}
119119
run: |
120120
try {
121121
$version = Get-Content -Path .\TESTED_VERSION.txt

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
smoke: false
1818
release:
19-
needs: test-build
19+
needs: e2e
2020
runs-on: ubuntu-latest
2121
permissions:
2222
contents: write

0 commit comments

Comments
 (0)