Skip to content

Commit

Permalink
Releases/v2 (#35)
Browse files Browse the repository at this point in the history
* release v2

* skip npm i on release integration tests

* double brackets

* head ref

* base ref check

* no symlinks
  • Loading branch information
davidgamero authored Dec 14, 2021
1 parent 687ece0 commit b790592
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: ubuntu-latest
env:
KUBECONFIG: /home/runner/.kube/config
PR_BASE_REF: ${{ github.event.pull_request.base.ref }}
steps:
- id: setup-minikube
name: Setup Minikube
Expand All @@ -20,8 +21,11 @@ jobs:
- id: action-npm-build
name: npm install and build
run: |
npm install
npm run build
echo $PR_BASE_REF
if [[ $PR_BASE_REF != releases/* ]]; then
npm install
npm run build
fi
- id: call-create-secret
name: execute k8s-create-secret
uses: ./
Expand Down

0 comments on commit b790592

Please sign in to comment.