Skip to content

Release 0.8.0

Release 0.8.0 #56

Workflow file for this run

name: ci
on:
push:
tags:
- "v*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up variables
id: vars
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: maxschmoecker/valheim-mod-version-check:latest,maxschmoecker/valheim-mod-version-check:${{ steps.vars.outputs.VERSION }}