go-ethereum/.gitea/workflows/release-azure-cleanup.yml
Felix Lange 99c0ed1154
Some checks are pending
/ Linux Build (push) Waiting to run
/ Linux Build (arm) (push) Waiting to run
/ Docker Image (push) Waiting to run
.gitea: modify scheduled workflow times (#31946)
2025-06-02 13:00:58 +02:00

22 lines
459 B
YAML

on:
schedule:
- cron: '0 14 * * *'
workflow_dispatch:
jobs:
azure-cleanup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24
cache: false
- name: Run cleanup script
run: |
go run build/ci.go purge -store gethstore/builds -days 14
env:
AZURE_BLOBSTORE_TOKEN: ${{ secrets.AZURE_BLOBSTORE_TOKEN }}