We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a51f839 commit 0a716a7Copy full SHA for 0a716a7
1 file changed
.github/workflows/build-docker.yml
@@ -9,12 +9,6 @@ on:
9
schedule:
10
# Rebuild hebdomadaire lundi 06:00 UTC pour capter les nouvelles versions SUSHI
11
- 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: ''
18
19
permissions:
20
contents: read
@@ -30,11 +24,7 @@ jobs:
30
24
id: sushi-version
31
25
shell: bash
32
26
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)
38
28
echo "version=$VERSION" >> $GITHUB_OUTPUT
39
29
echo "SUSHI version: $VERSION"
40
0 commit comments