Don't rely on test (#819)

This commit is contained in:
Joseph Milazzo
2021-12-02 11:21:48 -06:00
committed by GitHub
parent e7619e6b0a
commit 4585e1ae3c
+3 -3
View File
@@ -95,7 +95,7 @@ jobs:
version:
name: Bump version on Develop push
needs: [ build, test ]
needs: [ build ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
steps:
@@ -122,7 +122,7 @@ jobs:
develop:
name: Build Nightly Docker if Develop push
needs: [ build, test, version ]
needs: [ build, version ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
steps:
@@ -225,7 +225,7 @@ jobs:
stable:
name: Build Stable Docker if Main push
needs: [ build, test ]
needs: [ build ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
steps: