mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Add tested Docker files for current Debian / Ubuntu, defaulting to Jammy * Update update-docker.yml * Update update-docker.yml * Solving with Docker run parameters * Just variable name change * Update update-docker.yml * Change to master Also merge https://github.com/armbian/scripts/pull/6 * Set default values * Add missing libssl1.1
25 lines
516 B
YAML
25 lines
516 B
YAML
name: Update Docker
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
|
|
jobs:
|
|
|
|
Docker:
|
|
if: ${{ github.repository_owner == 'Armbian' }}
|
|
uses: armbian/scripts/.github/workflows/update-docker-image.yml@master
|
|
|
|
secrets:
|
|
CR_PAT: ${{ secrets.CR_PAT }}
|
|
|
|
Docker-test:
|
|
needs: Docker
|
|
if: ${{ github.repository_owner == 'Armbian' }}
|
|
uses: armbian/scripts/.github/workflows/build-test-image-docker.yml@master
|
|
with:
|
|
|
|
runner: "ubuntu-latest"
|
|
reference: master
|