We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49fe28b commit 8836bcdCopy full SHA for 8836bcd
1 file changed
.github/workflows/deploy.yml
@@ -2,7 +2,7 @@ name: Deploy to GitHub Pages
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [main]
6
workflow_dispatch:
7
8
permissions:
@@ -16,6 +16,12 @@ jobs:
16
steps:
17
- name: Checkout repository using Git
18
uses: actions/checkout@v3
19
+ - name: Cache images
20
+ uses: actions/cache@v3
21
+ with:
22
+ path: node_modules/.cache/astro-optimize-images
23
+ key: image-cache-${{ runner.os }}-${{ hashFiles('**/src/assets/**') }}
24
+ restore-keys: image-cache-${{ runner.os }}-
25
- name: Install, build, and upload website
26
uses: withastro/action@v0
27
with:
0 commit comments