Revert "Docker image arch linux/arm/v7 added"

This reverts commit 8c5b04a0df.
This commit is contained in:
Paramtamtam
2021-03-23 15:08:46 +05:00
parent 8c5b04a0df
commit e53ceaa3e3
3 changed files with 10 additions and 21 deletions

View File

@@ -12,12 +12,6 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1 # Action page: <https://github.com/docker/setup-qemu-action>
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 # Action page: <https://github.com/docker/setup-buildx-action>
- name: Docker login in default registry
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_LOGIN }}" --password-stdin &> /dev/null
@@ -30,12 +24,15 @@ jobs:
- name: Build image
run: |
docker buildx build \
--platform "linux/amd64,linux/arm/v7" \
docker build \
--tag "tarampampam/3proxy:${{ steps.tag.outputs.value }}" \
--tag "tarampampam/3proxy:latest" \
--tag "ghcr.io/tarampampam/3proxy:${{ steps.tag.outputs.value }}" \
--tag "ghcr.io/tarampampam/3proxy:latest" \
--file ./Dockerfile \
--push \
.
-f ./Dockerfile .
- name: Push into default registry
run: docker push "tarampampam/3proxy:${{ steps.tag.outputs.value }}" && docker push "tarampampam/3proxy:latest"
- name: Push into ghcr.io
run: docker push "ghcr.io/tarampampam/3proxy:${{ steps.tag.outputs.value }}" && docker push "ghcr.io/tarampampam/3proxy:latest"