We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c28913 commit d6a0895Copy full SHA for d6a0895
.github/workflows/verify-tinytex-patterns.yml
@@ -8,6 +8,7 @@ on:
8
permissions:
9
contents: read
10
issues: write
11
+ actions: write
12
13
jobs:
14
verify:
@@ -149,6 +150,14 @@ jobs:
149
150
cp regex.json .cache/regex.json
151
echo "✓ Cache updated with new patterns"
152
153
+ - name: Delete old cache
154
+ if: steps.compare.outputs.changed == 'true'
155
+ continue-on-error: true
156
+ env:
157
+ GH_TOKEN: ${{ github.token }}
158
+ run: |
159
+ gh cache delete tinytex-regex-latest || echo "No existing cache to delete"
160
+
161
- name: Save new cache
162
if: steps.compare.outputs.changed == 'true' || steps.compare.outputs.first_run == 'true'
163
uses: actions/cache/save@v4
0 commit comments