Publish dev docker images from main (#789)

* Publish unstable docker images from main

* Update and rename release_unstable.yaml to release_dev.yaml

* Add dev docker compose
This commit is contained in:
Jonas Plum
2026-02-07 12:09:15 +01:00
committed by GitHub
parent 677f2bc473
commit 12713568e4
3 changed files with 108 additions and 0 deletions

34
.github/workflows/release_dev.yaml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: Publish dev Release
on:
push:
branches:
- main
jobs:
docker-build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker Images
run: |
docker buildx build db/ --no-cache -t ghcr.io/open-wanderer/wanderer-db:dev --platform=linux/amd64,linux/arm64 --push
docker buildx build web/ --no-cache -t ghcr.io/open-wanderer/wanderer-web:dev --platform=linux/amd64,linux/arm64 --push