Skip to content

Commit

Permalink
added docker publish, need to do for other repos (#275)
Browse files Browse the repository at this point in the history
Signed-off-by: Allison Suarez Miranda <asuarezmiranda@lyft.com>
  • Loading branch information
allisonsuarez committed Mar 9, 2021
1 parent 0ff7a70 commit 9bfc928
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions metadata/.github/workflows/publish_release.yml
Expand Up @@ -41,3 +41,16 @@ jobs:
with:
user: __token__
password: ${{ secrets.pypi_password }}
build-and-publish-docker-image:
name: Build and publish docker image
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Login with docker
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
- name: Publish to Registry for latest
if: success()
run: make build-push-image-latest
- name: Publish to Registry for version
run: make build-push-image-version

0 comments on commit 9bfc928

Please sign in to comment.