mirror of
https://github.com/lone-cloud/prism
synced 2026-06-03 08:43:10 -07:00
allow prism dev releases
This commit is contained in:
parent
f170211d6a
commit
b5b927880b
2 changed files with 35 additions and 0 deletions
31
.github/workflows/release-dev.yml
vendored
Normal file
31
.github/workflows/release-dev.yml
vendored
Normal 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
|
||||
4
Makefile
4
Makefile
|
|
@ -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
|
||||
Loading…
Add table
Reference in a new issue