| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- name: Docker
- on:
- schedule:
- - cron: '0 1 * * *'
- push:
- tags:
- - '[0-9]+.[0-9]+.[0-9]+'
- pull_request:
- branches: [ main ]
- jobs:
- docker-images:
- name: Docker Images
- permissions:
- packages: write
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
- - name: Generate Alpine Docker tags
- id: docker_alpine_tags
- uses: docker/metadata-action@v5
- with:
- images: |
- docker.io/${{ github.repository_owner }}/miniflux
- ghcr.io/${{ github.repository_owner }}/miniflux
- quay.io/${{ github.repository_owner }}/miniflux
- tags: |
- type=ref,event=pr
- type=schedule,pattern=nightly
- type=semver,pattern={{raw}}
- - name: Generate Distroless Docker tags
- id: docker_distroless_tags
- uses: docker/metadata-action@v5
- with:
- images: |
- docker.io/${{ github.repository_owner }}/miniflux
- ghcr.io/${{ github.repository_owner }}/miniflux
- quay.io/${{ github.repository_owner }}/miniflux
- tags: |
- type=ref,event=pr
- type=schedule,pattern=nightly
- type=semver,pattern={{raw}}
- flavor: |
- suffix=-distroless,onlatest=true
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v3
- - name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
- - name: Login to DockerHub
- if: ${{ github.event_name != 'pull_request' && vars.PUBLISH_DOCKER_IMAGES == 'true' }}
- uses: docker/login-action@v3
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- - name: Login to GitHub Container Registry
- if: ${{ github.event_name != 'pull_request' && vars.PUBLISH_DOCKER_IMAGES == 'true' }}
- uses: docker/login-action@v3
- with:
- registry: ghcr.io
- username: ${{ github.repository_owner }}
- password: ${{ secrets.GITHUB_TOKEN }}
- - name: Login to Quay Container Registry
- if: ${{ github.event_name != 'pull_request' && vars.PUBLISH_DOCKER_IMAGES == 'true' }}
- uses: docker/login-action@v3
- with:
- registry: quay.io
- username: ${{ secrets.QUAY_USERNAME }}
- password: ${{ secrets.QUAY_TOKEN }}
- - name: Build and Push Alpine images
- uses: docker/build-push-action@v6
- if: ${{ vars.PUBLISH_DOCKER_IMAGES == 'true' }}
- with:
- context: .
- file: ./packaging/docker/alpine/Dockerfile
- platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
- push: ${{ github.event_name != 'pull_request' }}
- tags: ${{ steps.docker_alpine_tags.outputs.tags }}
- - name: Build and Push Distroless images
- uses: docker/build-push-action@v6
- if: ${{ vars.PUBLISH_DOCKER_IMAGES == 'true' }}
- with:
- context: .
- file: ./packaging/docker/distroless/Dockerfile
- platforms: linux/amd64,linux/arm64
- push: ${{ github.event_name != 'pull_request' }}
- tags: ${{ steps.docker_distroless_tags.outputs.tags }}
|