Skip to content

Commit 0a51dd0

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 0a51dd0

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+
- run: make docker/build
19+
- run: make docker/login
20+
env:
21+
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
22+
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
23+
- name: docker push
24+
# TODO
25+
# if: github.ref == 'develop'
26+
run: make docker/push

0 commit comments

Comments
 (0)