From 672220f19476d1cc60208391de873892690911c6 Mon Sep 17 00:00:00 2001 From: max-lt Date: Sat, 23 Mar 2024 22:54:05 +0100 Subject: [PATCH] Add actions config --- .github/workflow/docker.yml | 42 +++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflow/docker.yml diff --git a/.github/workflow/docker.yml b/.github/workflow/docker.yml new file mode 100644 index 0000000..67fd504 --- /dev/null +++ b/.github/workflow/docker.yml @@ -0,0 +1,42 @@ +name: Build docker image + +on: + push: + branches: [ master ] + tags: + - 'v*.*.*' + pull_request: + branches: [ master ] + +jobs: + build_types: + name: Build + runs-on: ubuntu-latest + steps: + - name: Check Out Repo + uses: actions/checkout@v3 + - name: Docker metadata + id: metadata + uses: docker/metadata-action@v4 + with: + images: | + ghcr.io/${{ github.repository }} + tags: | + type=semver,pattern={{raw}} + type=raw,value=latest,enable={{is_default_branch}} + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build server + id: docker_build + uses: docker/build-push-action@v3 + with: + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.metadata.outputs.tags }} + cache-from: type=gha,scope=main + cache-to: type=gha,mode=max,scope=main