Skip to content

Commit

Permalink
Use make targets
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKalke committed Jan 29, 2024
1 parent 42d4ec5 commit d8a03f3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/upgrade-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,14 @@ jobs:
--port 443:443@loadbalancer
--wait
- name: install latest warden operator from the release
run: helm install warden https://github.com/kyma-project/warden/releases/latest/download/warden-chart.tgz
run: |
latest_tag=$(git describe --tags $(git rev-list --tags --max-count=1))
git checkout $latest_tag
make install
- name: checkout to latest commit and install warden
run: |
last_commit=$(git rev-parse origin/main)
git checkout $last_commit
helm install warden https://github.com/kyma-project/warden/tree/main/charts/warden
make install
- name: run integration tests
run: make test

0 comments on commit d8a03f3

Please sign in to comment.