Skip to content

Commit 0a716a7

Browse files
nrissclaude
andcommitted
remove workflow_dispatch from build-docker.yml
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a51f839 commit 0a716a7

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

.github/workflows/build-docker.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@ on:
99
schedule:
1010
# Rebuild hebdomadaire lundi 06:00 UTC pour capter les nouvelles versions SUSHI
1111
- cron: '0 6 * * 1'
12-
workflow_dispatch:
13-
inputs:
14-
sushi_version:
15-
description: 'Version SUSHI à installer (défaut : dernière stable)'
16-
required: false
17-
default: ''
1812

1913
permissions:
2014
contents: read
@@ -30,11 +24,7 @@ jobs:
3024
id: sushi-version
3125
shell: bash
3226
run: |
33-
if [ -n "${{ github.event.inputs.sushi_version }}" ]; then
34-
VERSION="${{ github.event.inputs.sushi_version }}"
35-
else
36-
VERSION=$(npm view fsh-sushi version)
37-
fi
27+
VERSION=$(npm view fsh-sushi version)
3828
echo "version=$VERSION" >> $GITHUB_OUTPUT
3929
echo "SUSHI version: $VERSION"
4030

0 commit comments

Comments
 (0)