Unverified Commit e4b98aa0 authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files

Fix linux actions (#60)

parent 7da81539
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ jobs:
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2

      - name: Build and push Docker image
      - name: Build and push Docker image (release)
        uses: docker/build-push-action@v3
        with:
          context: .
@@ -42,6 +42,6 @@ jobs:
          file: Dockerfile-py3-linux
          push: true
          tags: |
            ${{ github.ref_name }}
            ${{ github.ref_name }}"
            ${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:latest
          labels: ${{ steps.meta.outputs.labels }}
+3 −3
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ jobs:
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2

      - name: Build and push Docker image
      - name: Build and push Docker image (release)
        uses: docker/build-push-action@v3
        with:
          context: .
@@ -39,9 +39,9 @@ jobs:
            linux/arm64/v8
            linux/ppc64le
            linux/s390x
          file: Dockerfile-py3-linux
          file: Dockerfile-py3-linux-slim
          push: true
          tags: |
            ${{ github.ref_name }}
            ${{ github.ref_name }}"
            ${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux-slim:latest
          labels: ${{ steps.meta.outputs.labels }}