Adding depth in case of git config in fetch section of app/package #3141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: upgrade-testing | |
"on": | |
push: | |
branches: | |
- develop | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
- 'cli/**' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
- 'cli/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-all: | |
name: Upgrade Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21.11 | |
- name: Check out code | |
uses: actions/[email protected] | |
- name: Install Carvel Tools | |
run: ./hack/install-deps.sh | |
- name: Run Upgrade Test | |
run: | | |
set -e -x | |
minikube start --driver=docker | |
eval $(minikube docker-env --shell=bash) | |
kapp deploy -a kc -f https://github.com/carvel-dev/kapp-controller/releases/latest/download/release.yml -y | |
./hack/deploy.sh |