Skip to content

Fixed readme auth

Fixed readme auth #2

name: Docker Publish
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: '0 8 * * 2'
jobs:
ssh:
uses: ./.github/workflows/service_docker-build-and-publish.yml
with:
tags: "serversideup/proftpd:latest"
secrets: inherit
update_container_readme:
runs-on: ubuntu-20.04
name: Push README to Docker Hub
steps:
- name: git checkout
uses: actions/checkout@v4
with:
ref: main
- name: push README to Dockerhub
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_USER: ${{ secrets.DOCKER_HUB_USERNAME }}
DOCKER_PASS: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
with:
destination_container_repo: serversideup/proftpd
provider: dockerhub
short_description: 'A simple and lightweight ProFTPD image based on Ubuntu 22.04. If you are a poor soul like us who needed a FTP server for a legacy integration, this might be for you.'
readme_file: 'README.md'