Skip to content

Commit

Permalink
ci: fixed missing steps
Browse files Browse the repository at this point in the history
  • Loading branch information
andreszorro committed Jan 10, 2025
1 parent ed7d494 commit f7ebbe2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,11 @@ jobs:
Write-Error "An error occurred: $_"
}
- name: Extract version and add it to env variables
if: ${{ inputs.smoke && matrix.os != 'windows' }}
if: ${{ matrix.os != 'windows' }}
run: |
echo "TESTED_VERSION=$(cat ./TESTED_VERSION.txt)" >> ${GITHUB_ENV}
- name: Extract version and add it to env variables (Windows)
if: ${{ inputs.smoke && matrix.os == 'windows' }}
if: ${{ matrix.os == 'windows' }}
run: |
try {
$version = Get-Content -Path .\TESTED_VERSION.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
smoke: false
release:
needs: test-build
needs: e2e
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down

0 comments on commit f7ebbe2

Please sign in to comment.