Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
philip-linaro committed May 16, 2024
1 parent 7c7adfc commit 1ba26b8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/reset_main_cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ResetMainCacheAction

on:
workflow_dispatch:

# Cancel in-progress jobs or runs for the current workflow
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/cache/restore@v3
id: cache
with:
path: |
cache
.sst
key: cache-main

- name: Wipe contents of cache directory
run: |
rm -rf cache/*
- uses: actions/cache/save@v4
with:
path: |
cache
.sst
key: cache-main

0 comments on commit 1ba26b8

Please sign in to comment.