Skip to content

Remove instructions to cp nitter.conf #14

Remove instructions to cp nitter.conf

Remove instructions to cp nitter.conf #14

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to the Github Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push container
uses: docker/build-push-action@v2
with:
context: miniflux-chilled-refresher
push: true
tags: ghcr.io/${{ github.repository_owner }}/miniflux-chilled-refresher:latest
platforms: linux/amd64,linux/arm64