Skip to content

Commit

Permalink
Merge pull request #239 from ZeusWPI/docker-ci
Browse files Browse the repository at this point in the history
add docker workflow
  • Loading branch information
xerbalind authored Nov 26, 2024
2 parents ab1867d + 2d2cb59 commit 2f577e4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Docker main build

on:
push:
branches:
- main

concurrency:
group: docker-main
cancel-in-progress: true

jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the new image
run: docker build . -t ghcr.io/zeuswpi/haldis:${{ github.sha }}
- name: Tag the new image with latest
run: docker tag ghcr.io/zeuswpi/haldis:${{ github.sha }} ghcr.io/zeuswpi/haldis:latest
- name: Push Docker image
run: docker push --all-tags ghcr.io/zeuswpi/haldis

0 comments on commit 2f577e4

Please sign in to comment.