Skip to content

Commit c2fe741

Browse files
committed
🔇 Set sh.command log level to warning
sh INFO log level is too verbose by default, refs upstream TODO TODO: I was tracking a sh logger issue being too verbose. It turns out that this is an old upstream issue that we see because we run the CI using an old p4a Docker image (3 years old) from DockerHub TODO: explain the token was generated via https://app.docker.com/settings/personal-access-tokens set under https://github.com/kivy/python-for-android/settings/secrets/actions Explain it's currently under `andremiras` account, but can be changed any time. Explain we made it a dedicated workflow to not add more complexity to the push one, but that also mean we rebuild the image. Explain that later we could add support for multi architecture. - update the icon
1 parent 27ead9a commit c2fe741

File tree

6 files changed

+293
-253
lines changed

6 files changed

+293
-253
lines changed

.github/workflows/docker.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Docker
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- develop
8+
# TODO
9+
- feature/dockerhub_push
10+
pull_request:
11+
12+
jobs:
13+
docker:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: docker/setup-buildx-action@v3
18+
# TODO
19+
# - run: make docker/build
20+
- run: make docker/login
21+
env:
22+
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
23+
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
24+
- name: docker push
25+
if: github.ref == 'develop'
26+
run: make docker/push

0 commit comments

Comments
 (0)