From b6f5731bf11b8ec68ba0372585501bec82db8e9c Mon Sep 17 00:00:00 2001 From: Slavfox Date: Thu, 23 Apr 2020 21:43:37 +0200 Subject: [PATCH] v.1.8.0+zip.3 Hopefully fix build scripts this time --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c306098..206a11a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,9 +12,15 @@ jobs: container: image: archlinux/base steps: + - name: Update packages + run: | + pacman -Syyu --noconfirm - name: Install dependencies run: | - pacman -Sy --noconfirm base git tar which python python-pipenv zip libffi + pacman -S --noconfirm base git tar which zip libffi + - name: Install python + run: | + pacman -S --noconfirm python python-pipenv - name: Install fontforge run: pacman -S --noconfirm fontforge - uses: actions/checkout@v2