1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-19 06:47:44 +00:00

Manual cache save

This commit is contained in:
Joshua Goins 2024-04-24 15:39:49 -04:00
parent 204d7f79df
commit 475758e4fe

View file

@ -65,8 +65,8 @@ jobs:
libwayland-dev \
- name: Cache Prefix
id: cache-prefix
uses: actions/cache@v4
id: cache-prefix-restore
uses: actions/cache/restore@v4
with:
path: ${{ steps.strings.outputs.prefix-dir }}
key: ${{ runner.os }}-prefix
@ -255,6 +255,13 @@ jobs:
git clone https://github.com/nothings/stb.git
mv stb/* ${{ steps.strings.outputs.prefix-dir }}/include
- name: Save Prefix
id: cache-prefix]-save
uses: actions/cache/save@v4
with:
path: ${{ steps.strings.outputs.prefix-dir }}
key: ${{ steps.cache-prefix-restore.outputs.cache-primary-key }}
- name: Configure
run: >
cmake -B ${{ steps.strings.outputs.build-output-dir }}