From 98217a48fc001c481b85aef345d06c33cd93d97f Mon Sep 17 00:00:00 2001 From: Josh Jacobs Date: Thu, 18 Nov 2021 13:50:09 +0000 Subject: [PATCH] style: reordering because pentantry --- .github/workflows/deploy-workflow.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-workflow.yml b/.github/workflows/deploy-workflow.yml index 026fcbf5..24aa2030 100644 --- a/.github/workflows/deploy-workflow.yml +++ b/.github/workflows/deploy-workflow.yml @@ -48,10 +48,10 @@ jobs: context: . load: true tags: dangeroustech/streamdl:latest - - - name: Dockerhub Push Stable - if: ${{ github.ref == 'refs/heads/master' }} - id: dockerhub_stable_push + + - name: Dockerhub Push Staging + if: ${{ github.ref == 'refs/heads/staging' }} + id: dockerhub_staging_push uses: docker/build-push-action@v2 with: context: . @@ -59,11 +59,11 @@ jobs: push: true tags: | dangeroustech/streamdl:latest - dangeroustech/streamdl:stable + dangeroustech/streamdl:staging - - name: Dockerhub Push Staging - if: ${{ github.ref == 'refs/heads/staging' }} - id: dockerhub_staging_push + - name: Dockerhub Push Stable + if: ${{ github.ref == 'refs/heads/master' }} + id: dockerhub_stable_push uses: docker/build-push-action@v2 with: context: . @@ -71,4 +71,4 @@ jobs: push: true tags: | dangeroustech/streamdl:latest - dangeroustech/streamdl:staging + dangeroustech/streamdl:stable