fix: add gating to actions

This commit is contained in:
Alexis Tyler
2021-03-28 07:59:09 -07:00
parent 182ba5a722
commit dd1f583fa1

View File

@@ -43,6 +43,8 @@ jobs:
build:
runs-on: ubuntu-latest
needs: [lint]
steps:
- name: Checkout repo
uses: actions/checkout@v1
@@ -91,6 +93,8 @@ jobs:
build-binary:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Checkout repo
uses: actions/checkout@v1
@@ -151,7 +155,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
needs: [build, build-binary]
needs: [build-binary]
steps:
- name: Checkout repo