# # Author: Hari Sekhon # Date: 2022-01-27 18:55:16 +0000 (Thu, 27 Jan 2022) # # vim:ts=2:sts=2:sw=2:et # # https://github.com/HariSekhon/Dockerfiles # # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback # # https://www.linkedin.com/in/HariSekhon # --- name: Docker Build GitHub Alpine on: push: branches: - master - main paths: - alpine-github/Dockerfile - .github/workflows/docker_build_alpine_github.yaml workflow_dispatch: schedule: - cron: '0 0 * * 1' jobs: docker_build: name: Docker Build # github.event.repository context not available in scheduled workflows #if: github.event.repository.fork == false if: | github.repository_owner == 'HariSekhon' && ( github.event_name == 'schedule' || ( github.ref_type == 'branch' && ( github.ref_name == github.event.repository.default_branch || github.ref_name == 'docker' ) ) ) uses: HariSekhon/GitHub-Actions/.github/workflows/docker_build.yaml@master with: repo_tags: | harisekhon/alpine-github:latest harisekhon/github:alpine ghcr.io/harisekhon/alpine-github:latest ghcr.io/harisekhon/github:alpine context: alpine-github secrets: DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }} DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} permissions: contents: read packages: write