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 7e7f138 commit c34799cCopy full SHA for c34799c
.github/workflows/ci.yml
@@ -271,6 +271,16 @@ jobs:
271
if: runner.os == 'Linux'
272
run: opam exec -- dune build --display quiet --profile static
273
274
+ - name: Delete stable compiler build state
275
+ if: github.event_name == 'push' && github.ref == 'refs/heads/master'
276
+ run: |
277
+ gh actions-cache delete ${{ steps.compiler-build-state-key.outputs.value }} \
278
+ -R ${{ github.repository }} \
279
+ -B ${{ github.ref }} \
280
+ --confirm || echo "not exist"
281
+ env:
282
+ GH_TOKEN: ${{ github.token }}
283
+
284
- name: Save compiler build state
285
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
286
uses: actions/cache/save@v4
0 commit comments