roundcubemail-docker-dev image #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |