Skip to content

Commit

Permalink
build: fix tags
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec committed May 11, 2021
1 parent 5b66c96 commit d043354
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:

e2e:
runs-on: ubuntu-latest
needs: [ test ]
env:
KUBECONFIG: /etc/rancher/k3s/k3s.yaml
steps:
Expand Down Expand Up @@ -65,7 +64,7 @@ jobs:

publish-images:
runs-on: ubuntu-latest
needs: [ test, lint, e2e ]
needs: [ test, lint ]
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
strategy:
matrix:
Expand All @@ -89,7 +88,7 @@ jobs:
draft-release:
runs-on: ubuntu-latest
needs: [ test, lint, e2e ]
needs: [ publish-images ]
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
Expand Down

0 comments on commit d043354

Please sign in to comment.