34 lines
889 B
YAML
34 lines
889 B
YAML
#
|
|
# 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 |