From 339f3dae2fa78f9e6cde54b908805cde2b69325d Mon Sep 17 00:00:00 2001 From: Topvennie Date: Thu, 15 Aug 2024 12:01:07 +0200 Subject: [PATCH] zess: add build and push workflow --- .github/workflows/build.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..e5e013f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,37 @@ +name: Docker Build and Push + +on: + push: + branches: + - main + pull_request: + +jobs: + build-and-push: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Log in to Docker Hub + if: github.event_name == 'push' + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build Docker image + run: | + docker build . -t ghcr.io/zeuswpi/zess:pr-${{ github.sha }} + if [ "${{ github.event_name }}" == "push" ]; then + docker tag ghcr.io/zeuswpi/zess:pr-${{ github.sha }} ghcr.io/zeuswpi/zess:latest + fi + + - name: Push Docker image + if: github.event_name == 'push' + run: docker push --all-tags ghcr.io/zeuswpi/zess