We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2acaba commit 46e5bc1Copy full SHA for 46e5bc1
.github/workflows/chart-workflow.yaml
@@ -7,6 +7,7 @@ jobs:
7
lint-test:
8
name: "Lint and Test"
9
runs-on: ubuntu-22.04
10
+ if: github.ref != 'refs/heads/main'
11
steps:
12
- name: "Checkout"
13
uses: actions/checkout@v2.4.2
@@ -62,7 +63,7 @@ jobs:
62
63
name: Release Chart on Nexus
64
65
needs: lint-test
- if: github.ref == 'refs/heads/main'
66
+ if: ${{ always() }} && github.ref == 'refs/heads/main'
67
68
- name: Checkout
69
uses: actions/checkout@v2
0 commit comments