build-environments/.github/workflows/ci.yml

35 lines
1.0 KiB
YAML
Raw Permalink Normal View History

2021-09-17 08:35:14 +02:00
name: 'Yuzu Docker Image CI'
on:
workflow_dispatch:
inputs: {}
schedule:
- cron: '0 7 * * 0'
2021-09-17 08:35:14 +02:00
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
image: ["linux-clang-format", "linux-fresh", "linux-mingw", "linux-transifex"]
2021-09-17 08:35:14 +02:00
steps:
- uses: actions/checkout@v2
- uses: docker/setup-buildx-action@v1
name: Setup Docker BuildX system
- name: Login to DockerHub
uses: docker/login-action@v1
if: (github.ref == 'refs/heads/master') && (github.repository == 'yuzu-emu/build-environments')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v2
name: Build image
with:
push: ${{ (github.ref == 'refs/heads/master') && (github.repository == 'yuzu-emu/build-environments') }}
context: ${{ matrix.image }}
2021-09-22 23:49:12 +02:00
tags: yuzuemu/build-environments:${{ matrix.image }}