base #114
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: "base" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" # 00:00 UTC Everyday | |
env: | |
DOCKER_HUB_REPO: portainer/base | |
IMAGE_TAG: latest | |
jobs: | |
build_images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "[preparation] checkout" | |
uses: actions/[email protected] | |
- name: "[preparation] set up qemu" | |
uses: docker/[email protected] | |
- name: "[preparation] set up docker context for buildx" | |
run: docker context create builders | |
- name: "[preparation] set up docker buildx" | |
uses: docker/[email protected] | |
with: | |
endpoint: builders | |
driver-opts: image=moby/buildkit:v0.16.0 | |
- name: "[preparation] docker login" | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
- name: "build and push images" | |
uses: docker/[email protected] | |
with: | |
context: base/ | |
tags: ${{ env.DOCKER_HUB_REPO }}:${{ env.IMAGE_TAG }} | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
linux/arm | |
linux/ppc64le | |
sbom: true | |
provenance: true | |
push: true |