Skip to content

Commit 49926e8

Browse files
committedJan 13, 2025
Fix Github Actions script
1 parent 410734d commit 49926e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on: [push]
99
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313

1414
steps:
1515
- name: Setup build environment
@@ -38,4 +38,4 @@ jobs:
3838
export BRANCH=$(echo $GITHUB_REF | rev | cut -d/ -f1 | rev)
3939
echo $BRANCH
4040
cd _site
41-
find * -type f -print | xargs -I@ curl -I --fail -X PUT --upload-file "@" "https://preview.techaachen.de/$BRANCH/@" --user $UPLOAD_AUTH
41+
find * -type f -print | xargs -I@ curl --fail --request PUT --upload-file "@" "https://preview.techaachen.de/$BRANCH/@" --user $UPLOAD_AUTH

0 commit comments

Comments
 (0)