Bump certbot from 2.11.0 to 3.0.0 in /src #218
Workflow file for this run
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: "build-latest" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
- "master" | |
paths: | |
- "src/**" | |
pull_request: | |
branches: | |
- "main" | |
- "master" | |
paths: | |
- "src/Dockerfile*" | |
- "src/requirements.txt" | |
jobs: | |
docker_buildx_debian: | |
runs-on: ubuntu-latest | |
timeout-minutes: 210 | |
steps: | |
- name: Run Docker on tmpfs | |
uses: JonasAlfredsson/docker-on-tmpfs@v1.0.1 | |
with: | |
tmpfs_size: 7 | |
swap_size: 9 | |
- name: Perform setup steps | |
uses: JonasAlfredsson/checkout-qemu-buildx@v2 | |
with: | |
should_login: ${{ github.event_name != 'pull_request' }} | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push latest Debian image | |
uses: docker/build-push-action@v6.9.0 | |
with: | |
context: ./src | |
file: ./src/Dockerfile | |
platforms: | | |
linux/amd64 | |
linux/386 | |
linux/arm64 | |
linux/arm/v7 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: jonasal/nginx-certbot:latest | |
docker_buildx_alpine: | |
runs-on: ubuntu-latest | |
timeout-minutes: 100 | |
steps: | |
- name: Run Docker on tmpfs | |
uses: JonasAlfredsson/docker-on-tmpfs@v1.0.1 | |
with: | |
tmpfs_size: 7 | |
swap_size: 9 | |
- name: Perform setup steps | |
uses: JonasAlfredsson/checkout-qemu-buildx@v2 | |
with: | |
should_login: ${{ github.event_name != 'pull_request' }} | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push latest Alpine image | |
uses: docker/build-push-action@v6.9.0 | |
with: | |
context: ./src | |
file: ./src/Dockerfile-alpine | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: jonasal/nginx-certbot:latest-alpine |