diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..81ddb8b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,34 @@ +# +# Build docker image +# + +name: BuildMain +run-name: ${{ gitea.actor }} running CI in the pipeline 🚀 +on: [ push ] + +jobs: + BuildLatest: + runs-on: cth-ubuntu-latest + if: gitea.ref == 'refs/heads/main' + env: + RUNNER_TOOL_CACHE: /toolcache + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up docker buildx + uses: docker/setup-buildx-action@v3 + with: + driver-opts: | + network=giteanet + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push latest + uses: docker/build-push-action@v5 + env: + ACTIONS_RUNTIME_TOKEN: '' + with: + push: true + tags: zeguigui/roundcubemail:latest-apache \ No newline at end of file diff --git a/.gitea/workflows/nightly.yaml b/.gitea/workflows/nightly.yaml new file mode 100644 index 0000000..6a03d20 --- /dev/null +++ b/.gitea/workflows/nightly.yaml @@ -0,0 +1,35 @@ +# +# Build docker image +# + +name: BuildTag +run-name: ${{ gitea.actor }} running CI in the pipeline 🚀 +on: + schedule: + - cron: "30 2 * * *" + +jobs: + BuildNightly: + env: + RUNNER_TOOL_CACHE: /toolcache + runs-on: cth-ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + - name: Set up docker buildx + uses: docker/setup-buildx-action@v3 + with: + driver-opts: | + network=giteanet + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push version + uses: docker/build-push-action@v5 + env: + ACTIONS_RUNTIME_TOKEN: '' + with: + push: true + tags: zeguigui/roundcubemail:latest-apache \ No newline at end of file