Skip to content

Update pixman

Update pixman #408

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
- deploy
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
strategy:
matrix:
target: [ i686-w64-mingw32.static, x86_64-w64-mingw32.static, i686-w64-mingw32.shared, x86_64-w64-mingw32.shared ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Add safe git directory
run: git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Push to DockerHub
uses: docker/build-push-action@v5
with:
file: ./dockerfiles/${{matrix.target}}
push: true
tags: jonaski/mxe-qt-${{matrix.target}}:latest