We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410734d commit 49926e8Copy full SHA for 49926e8
.github/workflows/main.yml
@@ -9,7 +9,7 @@ on: [push]
9
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
10
jobs:
11
build:
12
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
13
14
steps:
15
- name: Setup build environment
@@ -38,4 +38,4 @@ jobs:
38
export BRANCH=$(echo $GITHUB_REF | rev | cut -d/ -f1 | rev)
39
echo $BRANCH
40
cd _site
41
- find * -type f -print | xargs -I@ curl -I --fail -X PUT --upload-file "@" "https://preview.techaachen.de/$BRANCH/@" --user $UPLOAD_AUTH
+ find * -type f -print | xargs -I@ curl --fail --request PUT --upload-file "@" "https://preview.techaachen.de/$BRANCH/@" --user $UPLOAD_AUTH
0 commit comments