github.com/ethereum/go-ethereum@v1.16.1/.gitea/workflows/release-azure-cleanup.yml (about)

     1  on:
     2    workflow_dispatch:
     3  
     4    ### Note we cannot use cron-triggered builds right now, Gitea seems to have
     5    ### a few bugs in that area. So this workflow is scheduled using an external
     6    ### triggering mechanism and workflow_dispatch.
     7    #
     8    # schedule:
     9    #   - cron: '0 15 * * *'
    10  
    11  jobs:
    12    azure-cleanup:
    13      runs-on: ubuntu-latest
    14      steps:
    15      - uses: actions/checkout@v4
    16  
    17      - name: Set up Go
    18        uses: actions/setup-go@v5
    19        with:
    20          go-version: 1.24
    21          cache: false
    22  
    23      - name: Run cleanup script
    24        run: |
    25          go run build/ci.go purge -store gethstore/builds -days 14
    26        env:
    27          AZURE_BLOBSTORE_TOKEN: ${{ secrets.AZURE_BLOBSTORE_TOKEN }}