Skip to content

Commit

Permalink
Build and push the container with a new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pnedkov committed Jan 20, 2024
1 parent 9d5d461 commit 7de16f1
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Docker Build and Push

on:
workflow_run:
workflows: ["Python Lint and Test"]
branches: ["master"]
types: [completed]

env:
IMAGE_NAME: "prestigen/ipask"

jobs:
docker-build-and-push:
if: ${{ github.event.workflow_run.conclusion == 'success' }}

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Get the last git hash
id: git
run: |
echo "IPASK_VERSION=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
shell: bash

#- name: Set up QEMU
# uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ env.IMAGE_NAME }}:latest,${{ env.IMAGE_NAME }}:${{ steps.git.outputs.IPASK_VERSION }}

0 comments on commit 7de16f1

Please sign in to comment.