Skip to content

enhance layout of feed articles component and add sorting for feeds b… #12

enhance layout of feed articles component and add sorting for feeds b…

enhance layout of feed articles component and add sorting for feeds b… #12

Workflow file for this run

name: Build app
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ghcr.io/lucasg04/fyrss-web:latest
cache-from: type=gha
cache-to: type=gha,mode=max