Skip to content

Commit

Permalink
fix: added missed step
Browse files Browse the repository at this point in the history
Signed-off-by: Prateek Chandra <[email protected]>
  • Loading branch information
pchandra19 committed Oct 25, 2024
1 parent 3dfd9d2 commit ef01228
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,11 @@ jobs:
with:
go-version: 1.19.13

- name: Checkout
uses: actions/checkout@v4

- name: Build images locally
run: make provisioner-localpv || exit 1;
run: make provisioner-localpv-image || exit 1;

- name: Setup Minikube-Kubernetes
uses: medyagh/setup-minikube@latest
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,11 @@ jobs:
with:
go-version: 1.19.13

- name: Checkout
uses: actions/checkout@v4

- name: Build images locally
run: make provisioner-localpv || exit 1;
run: make provisioner-localpv-image || exit 1;

- name: Setup Minikube-Kubernetes
uses: medyagh/setup-minikube@latest
Expand All @@ -153,4 +156,3 @@ jobs:
run: |
make integration-test
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,11 @@ jobs:
with:
go-version: 1.19.13

- name: Checkout
uses: actions/checkout@v4

- name: Build images locally
run: make provisioner-localpv || exit 1;
run: make provisioner-localpv-image || exit 1;

- name: Setup Minikube-Kubernetes
uses: medyagh/setup-minikube@latest
Expand Down Expand Up @@ -213,4 +216,3 @@ jobs:
DBUILD_REPO_URL=https://github.com/openebs/dynamic-localpv-provisioner
DBUILD_SITE_URL=https://openebs.io
RELEASE_TAG=${{ env.RELEASE_TAG }}
2 changes: 1 addition & 1 deletion scripts/update-chart-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,4 @@ if [[ -z $NO_OP ]]; then
else
die "Failed to update the chart versions"
fi
fi
fi
1 change: 1 addition & 0 deletions scripts/validate-chart-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,4 @@ elif [[ "$BRANCH_NAME" =~ ^(release/[0-9]+\.[0-9]+)$ ]]; then
else
die "Unknown branch name: $BRANCH_NAME"
fi

1 change: 1 addition & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ pkgs.mkShell {
chart-testing
];
}

0 comments on commit ef01228

Please sign in to comment.