forked from extern/Unexpected-Keyboard
Fix CI since recent font changes
Requires the latest version of fontforge. Re-order the steps to improve caching.
This commit is contained in:
parent
611f2c8111
commit
67487d0ef0
14
.github/workflows/make-apk.yml
vendored
14
.github/workflows/make-apk.yml
vendored
@ -7,16 +7,20 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build-Apk:
|
Build-Apk:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repo
|
- name: Install external dependencies
|
||||||
uses: actions/checkout@v2
|
run: |
|
||||||
|
# Dirty: Get a more recent version of fontforge
|
||||||
|
sudo sed -i 's/focal/impish/g' /etc/apt/sources.list
|
||||||
|
sudo apt-get update -y
|
||||||
|
sudo apt-get install -y fontforge
|
||||||
- uses: actions/setup-java@v2
|
- uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: 'zulu' # See 'Supported distributions' for available options
|
distribution: 'zulu' # See 'Supported distributions' for available options
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
- name: Install fontforge
|
- name: Checkout repo
|
||||||
run: sudo apt-get install -y fontforge
|
uses: actions/checkout@v2
|
||||||
- name: Cache debug certificate
|
- name: Cache debug certificate
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
Loading…
Reference in New Issue
Block a user