Skip to content

fix(container): update ghcr.io/erhardtconsulting/base-php docker tag (8.3.12 → 8.3.13) #18

fix(container): update ghcr.io/erhardtconsulting/base-php docker tag (8.3.12 → 8.3.13)

fix(container): update ghcr.io/erhardtconsulting/base-php docker tag (8.3.12 → 8.3.13) #18

name: "FreshRSS: Build Docker Image / Pull Request"
on:
pull_request:
branches:
- main
paths:
- 'freshrss/**'
permissions:
contents: read
jobs:
build-and-push:
runs-on: ubuntu-latest
env:
IMAGE_NAME: "freshrss"
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up QEMU for multi-architecture build
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3
with:
platforms: all
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3
with:
install: true
- name: Extract FRESHRSS_VERSION from Dockerfile
id: vars
run: |
FRESHRSS_VERSION=$(grep -E '^ARG FRESHRSS_VERSION=' freshrss/Dockerfile | cut -d '=' -f 2 | tr -d '"')
echo "FRESHRSS_VERSION=$FRESHRSS_VERSION" >> $GITHUB_ENV
- name: Build and push Docker image
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
with:
context: freshrss
platforms: "linux/386,linux/amd64,linux/arm64,linux/arm/v7"
push: false
tags: |
ghcr.io/erhardtconsulting/${{ env.IMAGE_NAME }}:dev-${{ env.FRESHRSS_VERSION }}