Skip to content

Add more logging for feed updating logic #20

Add more logging for feed updating logic

Add more logging for feed updating logic #20

Workflow file for this run

name: Build Docker image dev
on:
push:
# Run pipeline for commits on branch main
branches:
- "main"
- "!testing/**"
- "!feature/**"
- "!hotfix/**"
jobs:
build-dev:
runs-on: [ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push dev
uses: docker/build-push-action@v5
with:
context: .
file: docker/Dockerfile
push: true
tags: aigoncharov/telegram-to-rss:dev
platforms: linux/amd64,linux/arm64