Docker Publish (Production Images) #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Publish (Production Images) | |
on: | |
workflow_dispatch: | |
release: | |
types: [released] | |
schedule: | |
- cron: '0 8 * * 0' | |
jobs: | |
build: | |
uses: ./.github/workflows/service_docker-build-and-publish.yml | |
with: | |
tag-prefix: '' | |
checkout-type: latest-stable | |
secrets: inherit | |
update_container_readme: | |
runs-on: ubuntu-latest | |
name: Push README to Docker Hub | |
steps: | |
- name: git checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: push README to Dockerhub | |
uses: peter-evans/dockerhub-description@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_README_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_README_PASSWORD }} | |
repository: serversideup/s6-overlay | |
short-description: ${{ github.event.repository.description }} |