diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9146f79..985fdc5 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -24,6 +24,15 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 + - name: Purge images from camo.githubusercontent.com + shell: bash + run: | + urls=$(curl -sLk "https://github.com/ziv/raytiles" | grep -Eo "(http|https)://camo.githubusercontent.com[a-zA-Z0-9./?=_%:-]*") + while IFS= read -r url; do curl -X PURGE "$url"; done <<< "$urls" + + - uses: kevincobain2000/action-camo-purge@v1 + + - name: Install Dependencies run: | sudo apt-get update @@ -45,4 +54,4 @@ jobs: run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release - name: Build Project - run: cmake --build build --config Release --target Sandbox \ No newline at end of file + run: cmake --build build --config Release --target Sandbox