diff options
| author | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-28 02:55:26 +0200 |
|---|---|---|
| committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-05-31 13:22:03 +0200 |
| commit | 203cc0a7ef0bbf3b5a19db3caa96e91963ec154c (patch) | |
| tree | 3ad84299726636be1d3fb524b35b769578968152 /.github/workflows/push-containers.yml | |
| parent | 6321361c6b13a37b0cfa279a51a0cf8239a7852c (diff) | |
| download | upstream-203cc0a7ef0bbf3b5a19db3caa96e91963ec154c.tar.gz upstream-203cc0a7ef0bbf3b5a19db3caa96e91963ec154c.tar.bz2 upstream-203cc0a7ef0bbf3b5a19db3caa96e91963ec154c.zip | |
CI: build: add job to remove previous ccache cache if already exist
Github Actions cache doesn't permit to overwrite cache if it does
already exist. As a trick to refresh and have fresh ccache pool,
delete the ccache cache if it does exist with the help of Github REST
API. An additional permission is needed to access this API. Add this
permittion to each user of the build workflow.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to '.github/workflows/push-containers.yml')
| -rw-r--r-- | .github/workflows/push-containers.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/push-containers.yml b/.github/workflows/push-containers.yml index eb6ffd30c1e..1678c5ad4fe 100644 --- a/.github/workflows/push-containers.yml +++ b/.github/workflows/push-containers.yml @@ -153,6 +153,7 @@ jobs: permissions: contents: read packages: read + actions: write strategy: fail-fast: False matrix: |
