Files
cache/.github/workflows/update_docker.yml
2023-01-20 18:15:41 +01:00

24 lines
452 B
YAML

name: Build Docker Images
#
# Update Docker images we use for building CI
#
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * *' # Scheduled runs every day at 3am UTC
permissions:
contents: read
jobs:
Docker:
permissions:
contents: none
if: ${{ github.repository_owner == 'Armbian' }}
uses: armbian/scripts/.github/workflows/armbian-framework-docker-images.yml@master
secrets:
CR_PAT: ${{ secrets.CR_PAT }}