Skip to content

Commit

Permalink
Added ARM to docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuluPro committed Jun 5, 2023
1 parent f6acf20 commit ad115c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build image
run: docker buildx build . --tag "epicwink/proxpi:${{ github.ref_name }}"
run: docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 . --tag "epicwink/proxpi:${{ github.ref_name }}"
- name: Login to DockerHub
run: >
echo ${{ secrets.DOCKERHUB_PASSWORD }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
arch: [none, 'armv6', 'armv7']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down

0 comments on commit ad115c4

Please sign in to comment.