docker-hub-push #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docker-hub-push | |
on: | |
workflow_run: | |
workflows: | |
- tag-check | |
types: | |
- completed | |
jobs: | |
push: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Wait for all workflows to pass | |
run: | | |
export GITHUB_SHA=${{ github.sha }} | |
export REPO_PATH=${{ github.repository }} | |
export GH_TOKEN=${{ secrets.GH_PAT }} | |
pip install -r requirements_test.txt | |
python .github/wait_for_workflow_artifacts.py google-cloud-deploy docker-hub-push tag-check | |
- name: Wait for and download docker image artifact | |
uses: ./.github/actions/download-docker-artifact | |
with: | |
repo-read-token: ${{ secrets.GH_PAT }} | |
build-type: 'release' | |
- name: Log in to Docker Hub | |
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Push to docker hub | |
run: | | |
docker tag release:latest ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:${{ github.sha }} | |
docker push ${{ secrets.DOCKER_USERNAME }}/${{ github.event.repository.name }}:${{ github.sha }} |