Skip to content

Commit

Permalink
Add github actions for building docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
r-ash committed Mar 20, 2024
1 parent 4151a5d commit 8b5a6aa
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build Docker Image

on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- id: extract_branch
name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT

- 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: Login to GHCR (GitHub Packages)
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push dev containers
uses: docker/build-push-action@v5
if: github.event_name == 'pull_request'
with:
file: "./docker/Dockerfile"
push: true
tags: |
mrcide/hintr:${{steps.extract_branch.outputs.branch}}
ghcr.io/${{github.repository}}:${{steps.extract_branch.outputs.branch}}
- name: Build and push prod containers
uses: docker/build-push-action@v5
if: github.event_name != 'pull_request'
with:
file: "./docker/Dockerfile"
push: true
tags: |
mrcide/hintr:latest
mrcide/hintr:${{steps.extract_branch.outputs.branch}}
ghcr.io/${{github.repository}}:latest
ghcr.io/${{github.repository}}:${{steps.extract_branch.outputs.branch}}

0 comments on commit 8b5a6aa

Please sign in to comment.