Skip to content

remove obsolete plugin readmes, they have been moved to the website a… #73

remove obsolete plugin readmes, they have been moved to the website a…

remove obsolete plugin readmes, they have been moved to the website a… #73

Workflow file for this run

name: Docker
on:
push:
tags:
- 'v*'
jobs:
build:
name: Build Docker Image
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
compujuckel/assettoserver
tags: |
type=semver,pattern={{version}}
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build the Image
run: |
docker buildx bake -f docker/bake.hcl -f ${{ steps.meta.outputs.bake-file }} --push