c8988499dc
Try to supply credentials a bit differently.
30 lines
666 B
YAML
30 lines
666 B
YAML
name: Docker image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'scripts/Dockerfile'
|
|
- 'scripts/properties.sh'
|
|
- 'scripts/setup-android-sdk.sh'
|
|
- 'scripts/setup-ubuntu.sh'
|
|
schedule:
|
|
- cron: '0 2 * * 0'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Clone repository
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: |
|
|
cd ./scripts
|
|
docker build --tag termux/package-builder:latest .
|
|
- name: Push to hub.docker.com
|
|
run: |
|
|
docker login --username xeffyr --password '${{ secrets.DOCKER_HUB_PASSWORD }}'
|
|
docker push termux/package-builder:latest
|