public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
.github/workflows/rebuild_backup_image.yml
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
name: Build mailcow backup image
3
on:
4
schedule:
5
# At 00:00 on Sunday
6
- cron: "0 0 * * 0"
7
workflow_dispatch: # Allow to run workflow manually
9
jobs:
10
docker_image_build:
11
runs-on: ubuntu-latest
12
permissions:
13
packages: write
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v7
18
- name: Set up QEMU
19
uses: docker/setup-qemu-action@v4
21
- name: Set up Docker Buildx
22
uses: docker/setup-buildx-action@v4
24
- name: Login to GHCR
25
if: github.event_name != 'pull_request'
26
uses: docker/login-action@v4
27
with:
28
registry: ghcr.io
29
username: ${{ github.repository_owner }}
30
password: ${{ secrets.GITHUB_TOKEN }}
32
- name: Build and push
33
uses: docker/build-push-action@v7
34
with:
35
context: .
36
platforms: linux/amd64,linux/arm64
37
file: data/Dockerfiles/backup/Dockerfile
38
push: true
39
tags: ghcr.io/mailcow/backup:latest