Fix CI cache (#92)

it didn't work so far because you can't use variable in the path...
This commit is contained in:
Val Lorentz
2021-08-09 20:42:36 +02:00
committed by GitHub
parent 9de76b6063
commit a43ae63beb
4 changed files with 91 additions and 38 deletions

View File

@ -8,6 +8,15 @@ jobs:
- uses: actions/checkout@v2
- name: Create directories
run: cd ~/; mkdir -p .local/ go/
- name: Cache Anope
uses: actions/cache@v2
with:
key: 3-${{ runner.os }}-anope-2.0.9
path: '~/.cache
${{ github.workspace }}/anope
'
- name: Checkout Anope
uses: actions/checkout@v2
with: