mirror of
https://github.com/aria2/aria2.git
synced 2026-04-02 10:55:00 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
404 B
YAML
25 lines
404 B
YAML
name: android
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- Dockerfile.android
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Build
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
file: Dockerfile.android
|
|
context: .
|