Skip to content

Commit 1a388e7

Browse files
committed
Fix
1 parent 1d86b8a commit 1a388e7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ jobs:
2222
id: "date"
2323
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
2424
- name: "Cache the php documentation"
25-
id: cache-php-doc
25+
id: cache-php-docs
2626
uses: "actions/cache@v4"
2727
with:
2828
path: "generator/docs"
29-
key: php-doc-${{ steps.date.outputs.date }}
29+
key: php-docs-${{ steps.date.outputs.date }}
3030
- name: "Check out salathe/phpdoc-base"
3131
uses: "actions/checkout@v4"
32-
if: steps.cache-php-doc.outputs.cache-hit != 'true'
32+
if: steps.cache-php-docs.outputs.cache-hit != 'true'
3333
with:
3434
path: "generator/docs/salathe/phpdoc-base"
3535
repository: "salathe/phpdoc-base"
3636
fetch-depth: 0
3737
- name: "Check out php/doc-en"
3838
uses: "actions/checkout@v4"
39-
if: steps.cache-php-doc.outputs.cache-hit != 'true'
39+
if: steps.cache-php-docs.outputs.cache-hit != 'true'
4040
with:
4141
path: "generator/docs/php/doc-en"
4242
repository: "php/doc-en"
@@ -61,11 +61,11 @@ jobs:
6161
coverage: "pcov"
6262
php-version: "${{ matrix.php-version }}"
6363
- name: "Fetch cached docs"
64-
id: cache-php-doc
64+
id: cache-docs
6565
uses: "actions/cache@v4"
6666
with:
6767
path: "generator/docs"
68-
key: php-doc-${{ needs.fetch_defs.outputs.date }}
68+
key: php-docs-${{ needs.fetch_defs.outputs.date }}
6969
fail-on-cache-miss: true
7070
- name: "Cache dependencies installed with composer"
7171
uses: "actions/cache@v4"
@@ -140,11 +140,11 @@ jobs:
140140
coverage: "pcov"
141141
php-version: "8.4"
142142
- name: "Fetch cached docs"
143-
id: cache-php-doc
143+
id: cache-php-docs
144144
uses: "actions/cache@v4"
145145
with:
146146
path: "generator/docs/php/doc-en"
147-
key: php-doc-${{ needs.fetch_defs.outputs.date }}
147+
key: php-docs-${{ needs.fetch_defs.outputs.date }}
148148
fail-on-cache-miss: true
149149
- name: "Cache dependencies installed with composer"
150150
uses: "actions/cache@v4"

0 commit comments

Comments
 (0)