mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
27 lines
675 B
YAML
27 lines
675 B
YAML
on:
|
|
workflow_dispatch:
|
|
|
|
### Note we cannot use cron-triggered builds right now, Gitea seems to have
|
|
### a few bugs in that area. So this workflow is scheduled using an external
|
|
### triggering mechanism and workflow_dispatch.
|
|
#
|
|
# schedule:
|
|
# - cron: '0 15 * * *'
|
|
|
|
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 }}
|