From 3a57f7eb5a525d7ddde648f40399f6b5b0ef8e54 Mon Sep 17 00:00:00 2001 From: TheFrenchGhosty Date: Sun, 4 Sep 2022 14:35:28 +0200 Subject: [PATCH] Add the CI file --- .github/workflows/container-release.yml | 48 +++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/container-release.yml diff --git a/.github/workflows/container-release.yml b/.github/workflows/container-release.yml new file mode 100644 index 0000000..3538bec --- /dev/null +++ b/.github/workflows/container-release.yml @@ -0,0 +1,48 @@ +name: Docker Image CI + +on: + push: + branches: + - "master" + + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '0 */6 * * *' + +jobs: + + build-push: + runs-on: ubuntu-latest + + steps: + + # arm64 specific + - name: Set up QEMU + uses: docker/setup-qemu-action@v1 + with: + platforms: arm64 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + # arm64 specific + + - name: Check Out Repo + uses: actions/checkout@v2 + + - name: Login to registry + uses: docker/login-action@v1 + with: + registry: quay.io + username: ${{ secrets.QUAY_USERNAME }} + password: ${{ secrets.QUAY_PASSWORD }} + + - name: Build and push Docker image + uses: docker/build-push-action@v2 + with: + context: . + file: docker/Dockerfile + platforms: linux/amd64,linux/arm64/v8 + labels: quay.expires-after=24w + push: true + tags: quay.io/pussthecatorg/breezewiki:latest + build-args: release=1