all repos

freshrss-image @ f914a87c569da6549ffb740793756ffa1f8ec626

my FreshRSS setup (abandoned)
3 files changed, 45 insertions(+), 2 deletions(-)
build the image in actions

apes together strong

i'm an ape

i'm a stupid ape

i'm starting to f ing hate github

will it fix it

i wanna be able to trigger the actions
Author: Olexandr Smirnov olexsmir@gmail.com
Committed at: 2025-07-24 23:55:06 +0300
Parent: c9bc574
A .github/dependabot.yml

@@ -0,0 +1,7 @@

+version: 2 +updates: + - package-ecosystem: docker + directory: / + schedule: + interval: monthly + day: monday
A .github/workflows/release.yml

@@ -0,0 +1,36 @@

+name: release +on: + workflow_dispatch: + push: + branches: + - main + +env: + IMAGE_NAME: ghcr.io/${{ github.repository }} + +jobs: + release: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - name: Log in to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Fetch extensions + run: ./fetch.sh + + - name: Build the container + run: ./build.sh $IMAGE_NAME ${{ github.sha }} + + - name: Publish the container + run: | + docker tag "$IMAGE_NAME:${{ github.sha }}" "$IMAGE_NAME:latest" + docker push "$IMAGE_NAME:${{ github.sha }}" + docker push "$IMAGE_NAME:latest"
M build.sh

@@ -1,8 +1,8 @@

#!/usr/bin/env bash set -eou pipefail -IMAGE_NAME="ghcr.io/olexsmir/freshrss-image" -TAG="${1:-latest}" +IMAGE_NAME="${1:?Missing image name}" +TAG="${2:-latest}" echo "[!] Building image $IMAGE_NAME:$TAG" docker build -f Containerfile -t "$IMAGE_NAME:$TAG" .