Skip to content

Commit

Permalink
ci: more correct
Browse files Browse the repository at this point in the history
  • Loading branch information
kfilippenok committed Dec 5, 2024
1 parent 5e9d62f commit a237e95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ jobs:
lazarus-version: "dist"
with-cache: false

- name: Download BGRABitmapPack
- name: Download BGRABitmapPack Windows
if: ${{ matrix.operating-system == 'windows-latest' }}
run: Invoke-WebRequest -Uri https://packages.lazarus-ide.org/BGRABitmap.zip -OutFile BGRABitmap.zip
- name: Download BGRABitmapPack Linux
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
run: wget https://packages.lazarus-ide.org/BGRABitmap.zip

- name: Unzip BGRABitmapPack
- name: Unzip BGRABitmapPack Windows
if: ${{ matrix.operating-system == 'windows-latest' }}
run: Expand-Archive -Path BGRABitmap.zip -DestinationPath . -Force
- name: Unzip BGRABitmapPack Linux
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
run: unzip BGRABitmap.zip

Expand Down

0 comments on commit a237e95

Please sign in to comment.