Skip to content

Commit

Permalink
ci: remove branch input on manual publish
Browse files Browse the repository at this point in the history
  • Loading branch information
eunwoo1104 authored Oct 19, 2024
1 parent 5c1541d commit 4ec2ff1
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/publish-manual.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 4ec2ff1

Please sign in to comment.