Skip to content

Commit 5700108

Browse files
author
webdevred
committed
fix
1 parent 45bab25 commit 5700108

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
- name: Cache apt packages
2323
uses: actions/cache@v3
2424
with:
25-
path: ${{ env.HOME }}/apt-cache
25+
path: ~/apt-cache
2626
key: ${{ runner.os }}-apt-${{ hashFiles('apt-deps.txt') }}
2727
- name: Install dependencies with cache
2828
run: |
2929
mkdir -p $HOME/apt-cache
3030
sudo apt-get -o Dir::Cache::Archives="$HOME/apt-cache" update
31-
sudo apt-get -o Dir::Cache::Archives="$HOME/apt-cache" install -y \
32-
clang $(cat apt-deps.txt)
31+
sudo apt-get -o Dir::Cache::Archives="$HOME/apt-cache" install -y clang $(cat apt-deps.txt)
32+
ls apt-cache
3333
- run: clang nob.c -o nob
3434
- run: ./nob
3535

0 commit comments

Comments
 (0)