Skip to content

Commit

Permalink
Standardizing syntax; fully operational
Browse files Browse the repository at this point in the history
  • Loading branch information
jaedb committed Mar 13, 2022
1 parent 2bd9ec6 commit d15fcc7
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
if: ${{ matrix.coverage }}

deploy_pypi:
name: Build and publish to PyPi
name: 'Publish: PyPi'
runs-on: ubuntu-latest
needs: [jest, tox]
if: github.ref == 'refs/heads/deploy/release'
Expand Down Expand Up @@ -122,25 +122,24 @@ jobs:
run: echo ${{ steps.docker_build.outputs.digest }}

deploy_image:
name: Build and publish to DockerHub
name: 'Publish: DockerHub'
runs-on: ubuntu-latest
needs: [jest, tox]
if: github.ref == 'refs/heads/deploy/release'
steps:
-
name: Set up QEMU
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push

- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
Expand Down

0 comments on commit d15fcc7

Please sign in to comment.