ci: remove branch input on manual publish

This commit is contained in:
Eunwoo Choi 2024-10-20 00:08:44 +09:00 committed by GitHub
parent 5c1541de89
commit 4ec2ff13ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,5 @@
name: Publish by Manual
on:
workflow_dispatch:
inputs:
branch:
description: 'Select the branch to deploy'
required: true
default: 'master'
on: workflow_dispatch
env:
REGISTRY: ghcr.io
@ -21,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.branch }}
ref: ${{ env.GITHUB_REF }}
submodules: true
- name: Parse image tag
run: |