allow prism dev releases

This commit is contained in:
lone-cloud 2026-02-06 03:29:51 -08:00
parent f170211d6a
commit b5b927880b
2 changed files with 35 additions and 0 deletions

31
.github/workflows/release-dev.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Dev Release
on:
workflow_dispatch:
permissions:
packages: write
jobs:
build-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/lone-cloud/prism:dev

View file

@ -73,6 +73,10 @@ release:
git push origin "v$$VERSION"; \
gh workflow run release.yml
release-dev:
@echo "Triggering dev Docker image build..."
gh workflow run release-dev.yml
release-signal:
@echo "Triggering signal-cli image release via GitHub Actions..."
gh workflow run release-signal-cli.yml