Merge pull request #173 from scottyhardy/feature/update_github_ci #197
This file contains hidden or 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: build | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '0 3 * * SUN' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
wine_branch: | |
- stable | |
- devel | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build and export to local Docker instance | |
uses: docker/build-push-action@v6 | |
with: | |
build-args: | | |
WINE_BRANCH=${{ matrix.wine_branch }} | |
load: true | |
tags: docker-wine:latest | |
- | |
name: Test | |
run: | | |
./docker-wine --local --rm --xvfb --notty winetricks -q dotnet40 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Extract wine version | |
id: wine_ver | |
env: | |
WINE_BRANCH: ${{ matrix.wine_branch }} | |
run: | | |
WINE_VER="$(docker run --rm docker-wine /bin/bash -c "wine --version | sed -E 's/^wine-//'")" | |
if echo "${WINE_VER}" | grep -q -E "^[0-9]+(\.[0-9]+)+(-\S+)*$"; then | |
echo "Found wine version '${WINE_VER}'" | |
echo "value=${WINE_VER}" >> $GITHUB_OUTPUT | |
else | |
echo "ERROR: Unable to determine wine version" | |
exit 1 | |
fi | |
- | |
name: Generate timestamp | |
id: timestamp | |
run: | | |
TIMESTAMP="$(date +"%Y%m%d")" | |
echo "Timestamp: ${TIMESTAMP}" | |
echo "value=${TIMESTAMP}" >> $GITHUB_OUTPUT | |
- | |
name: Determine tags | |
uses: haya14busa/action-cond@v1 | |
id: tags | |
with: | |
cond: ${{ matrix.wine_branch == 'stable' }} | |
if_true: | |
scottyhardy/docker-wine:latest, | |
scottyhardy/docker-wine:${{ matrix.wine_branch }}, | |
scottyhardy/docker-wine:${{ matrix.wine_branch }}-${{ steps.wine_ver.outputs.value }}, | |
scottyhardy/docker-wine:${{ matrix.wine_branch }}-${{ steps.wine_ver.outputs.value }}-${{ steps.timestamp.outputs.value }} | |
if_false: | |
scottyhardy/docker-wine:${{ matrix.wine_branch }}, | |
scottyhardy/docker-wine:${{ matrix.wine_branch }}-${{ steps.wine_ver.outputs.value }}, | |
scottyhardy/docker-wine:${{ matrix.wine_branch }}-${{ steps.wine_ver.outputs.value }}-${{ steps.timestamp.outputs.value }} | |
- | |
name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v6 | |
with: | |
build-args: | | |
WINE_BRANCH=${{ matrix.wine_branch }} | |
push: true | |
tags: ${{ steps.tags.outputs.value }} | |
- | |
name: Update repo description | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
repository: scottyhardy/docker-wine |