diff --git a/.gitea/workflows/docker.yaml b/.gitea/workflows/docker.yaml index e69de29..2f85133 100644 --- a/.gitea/workflows/docker.yaml +++ b/.gitea/workflows/docker.yaml @@ -0,0 +1,28 @@ +name: ci + +on: + push: + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - + name: Build and push + uses: docker/build-push-action@v6 + with: + push: true + tags: bunix42/jekyll:4.2.2, bunix42/jekyll:4.2 + build-args: JEKYLL_VERSION=4.2.2, RUBY_VERSION=3-alpine \ No newline at end of file