mirror of
https://github.com/web3privacy/data
synced 2024-10-15 18:16:28 +02:00
Updated data-refresh.yml with cwebp install bash
This commit is contained in:
parent
70b34d83a8
commit
6fa910d677
1 changed files with 19 additions and 0 deletions
19
.github/workflows/data-refresh.yml
vendored
19
.github/workflows/data-refresh.yml
vendored
|
@ -22,14 +22,33 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout your repository using git
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: denoland/setup-deno@v1
|
||||
with:
|
||||
deno-version: v1.x
|
||||
|
||||
- uses: szenius/set-timezone@v2.0
|
||||
with:
|
||||
timezoneLinux: "Europe/Prague"
|
||||
|
||||
- name: Install cwebp
|
||||
shell: bash
|
||||
run: |
|
||||
pwd
|
||||
sudo apt-get install libjpeg-dev libpng-dev libtiff-dev libgif-dev
|
||||
wget https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.2.4-linux-x86-64.tar.gz
|
||||
tar xzvf libwebp-1.2.4-linux-x86-64.tar.gz
|
||||
cd libwebp-1.2.4-linux-x86-64/bin
|
||||
mv cwebp ${{ github.workspace }}
|
||||
cd ../..
|
||||
rm -rf libwebp-1.2.4-linux-x86-64
|
||||
rm -rf libwebp-1.2.4-linux-x86-64.tar.gz
|
||||
sudo mv cwebp /bin
|
||||
ls
|
||||
|
||||
- name: Run all MAKEFILE jobs
|
||||
run: make refresh
|
||||
|
||||
- name: Upload GitHub Pages artifact
|
||||
uses: actions/upload-pages-artifact@v3.0.1
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue