Skip to content

Commit

Permalink
Merge branch 'main' into feat/SPV-1075-broadcaster
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-4chain authored Oct 16, 2024
2 parents c5320ad + 57b44c3 commit dea77e9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/manual-build-dockers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "[Manual] Build Docker Images"
run-name: "Build docker image version ${{ inputs.version || github.ref_name }} from ref ${{ github.ref_name }}"
permissions:
contents: write
packages: write

on:
workflow_dispatch:
inputs:
version:
description: 'Version name to build, if not specified, then the name of the branch will be used'
required: false


jobs:
release_default:
uses: bactions/workflows/.github/workflows/release-go-server.yml@main
with:
version: ${{ inputs.version || github.ref_name }}
ref: ${{ github.ref }}
cgo_enabled: true
release_create: false
secrets:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

0 comments on commit dea77e9

Please sign in to comment.