Skip broken corefonts installation #341
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automated Wine update | |
on: | |
push: | |
branches: | |
- for-next | |
schedule: | |
- cron: '0 12 * * Sat' | |
jobs: | |
updateWine: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: master | |
token: ${{ secrets.PAT }} | |
- name: follow for-next | |
run: | | |
git fetch origin for-next | |
git merge --ff-only origin/for-next | |
- name: Get Latest Wine Version | |
id: wine | |
run: | | |
echo ::set-output name=release_tag::$(curl -sL https://www.winehq.org/news/ |grep "The Wine development release" |head -n1|cut -d " " -f6) | |
echo ::set-output name=current_tag::$(grep WINE_TAG= docker-wine/Dockerfile|cut -d- -f2) | |
- name: Update Wine | |
if: steps.wine.outputs.current_tag != steps.wine.outputs.release_tag | |
env: | |
RELEASE_TAG: ${{ steps.wine.outputs.release_tag }} | |
run: | | |
sed -i "s:WINE_TAG=.*$:WINE_TAG=wine-$RELEASE_TAG:" docker-wine/Dockerfile | |
sed -i "s:^\(It is based on .* wine \)[^ ]*[0-9]:\1$RELEASE_TAG:" README.md | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.PAT }} | |
commit-message: Update wine to ${{ steps.wine.outputs.release_tag }} | |
title: Update wine to ${{ steps.wine.outputs.release_tag }} | |
body: | | |
Updates wine to ${{ steps.wine.outputs.release_tag }} | |
``` | |
./run-mtgo --update --test panard/mtgo:pr<#ID> | |
``` | |
assignees: pauleve | |
labels: autodocker | |
branch: auto/wine-updates |