-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.22 KB
/
container-image.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: roundcubemail-docker-dev image
on:
push:
paths:
- 'Dockerfile'
- 'docker-entrypoint-dev.sh'
- '.github/workflows/container-image.yml'
schedule:
# Rebuild automatically each monday early morning
- cron: "42 3 * * 1"
jobs:
build_and_push:
strategy:
fail-fast: false
name: build and push
runs-on: ubuntu-latest
# Set the permissions granted to the GITHUB_TOKEN for the actions in this job.
permissions:
contents: read
packages: write
attestations: write
id-token: write
steps:
- name: Check actor permission
uses: skjnldsv/check-actor-permission@v2
with:
require: admin
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: .
push: true
#platforms: linux/amd64,linux/arm64
tags: "ghcr.io/pabzm/roundcubemail-docker-dev:latest"