Skip to content

Commit

Permalink
Adding check RC step to pull request wworkflow running on release bra…
Browse files Browse the repository at this point in the history
…nches
  • Loading branch information
lucasmlp committed Aug 31, 2023
1 parent 2e29a56 commit ed8d1dc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,8 @@ jobs:
run: make check-images
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

- name: Check RC images and charts
run: make check-rc
if: startsWith(github.ref, 'refs/heads/upstream/release-v')
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ remove:
forward-port:
./scripts/forward-port

TARGETS := prepare patch clean clean-cache charts list index unzip zip standardize validate template regsync check-images
TARGETS := prepare patch clean clean-cache charts list index unzip zip standardize validate template regsync check-images check-rc

$(TARGETS):
@./scripts/pull-scripts
Expand Down
2 changes: 1 addition & 1 deletion scripts/version
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set -e

CHARTS_BUILD_SCRIPTS_REPO=https://github.com/rancher/charts-build-scripts.git
CHARTS_BUILD_SCRIPT_VERSION="${CHARTS_BUILD_SCRIPT_VERSION:-v0.4.8}"
CHARTS_BUILD_SCRIPT_VERSION="${CHARTS_BUILD_SCRIPT_VERSION:-v0.4.9}"

0 comments on commit ed8d1dc

Please sign in to comment.