Skip to content

Commit

Permalink
Fix Github Actions script
Browse files Browse the repository at this point in the history
  • Loading branch information
rleh committed Jan 13, 2025
1 parent 410734d commit 49926e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on: [push]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Setup build environment
Expand Down Expand Up @@ -38,4 +38,4 @@ jobs:
export BRANCH=$(echo $GITHUB_REF | rev | cut -d/ -f1 | rev)
echo $BRANCH
cd _site
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 comments on commit 49926e8

Please sign in to comment.