Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
run: cmake --build build --config Release --target Sandbox
Loading