This commit is contained in:
parent
815683afc8
commit
d4d4a9202a
1 changed files with 5 additions and 2 deletions
|
|
@ -28,9 +28,12 @@ jobs:
|
|||
steps:
|
||||
- uses: https://data.forgejo.org/actions/checkout@v4
|
||||
|
||||
# Debugging cache miss issue (#16) — check whether ACTIONS_CACHE_URL is injected
|
||||
# Debugging cache miss issue (#16) — check whether ACTIONS_CACHE_URL is injected and reachable
|
||||
- name: Debug cache env
|
||||
run: echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}" && env | grep -i cache || true
|
||||
run: |
|
||||
echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}"
|
||||
env | grep -i cache || true
|
||||
curl -v --max-time 5 "${ACTIONS_CACHE_URL}" || echo "CURL FAILED: $?"
|
||||
|
||||
- name: Cache PHP installation
|
||||
uses: https://data.forgejo.org/actions/cache@v4
|
||||
|
|
|
|||
Loading…
Reference in a new issue