mirror of https://git.rancher.io/charts
Merge pull request #3139 from lucasmlp/dev-v2.8
Checking out PR in all pull request workflow jobs and upgrading scripts version to v0.5.2pull/3135/head
commit
c393e29e32
|
@ -38,7 +38,13 @@ jobs:
|
|||
name: Check Container Images
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout base branch
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Checkout PR
|
||||
run: gh pr checkout ${{ github.event.pull_request.number }}
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check container images
|
||||
run: make check-images
|
||||
|
@ -50,7 +56,13 @@ jobs:
|
|||
name: Check RC Images and Charts
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout base branch
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Checkout PR
|
||||
run: gh pr checkout ${{ github.event.pull_request.number }}
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Check RC images and charts
|
||||
run: make check-rc
|
||||
|
|
|
@ -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.5.1}"
|
||||
CHARTS_BUILD_SCRIPT_VERSION="${CHARTS_BUILD_SCRIPT_VERSION:-v0.5.2}"
|
||||
|
|
Loading…
Reference in New Issue