Skip to content

Commit

Permalink
added docker publish, need to do for other repos (amundsen-io#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 authored and Zachary Ruiz committed May 13, 2022
1 parent 93119da commit 01e006f
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 01e006f

Please sign in to comment.