fix axel error when action retried No state file, cannot resume
#1173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
workflow_dispatch: | |
schedule: | |
- cron: '45 2 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
BGPTOOLS_VERSION: 0.0.3 | |
GO111MODULE: on | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: cargo-bins/cargo-binstall@main | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: 1.16 | |
- run: sudo apt-get install -y lftp bgpdump tree jq axel | |
- uses: actions/cache@v3 | |
with: | |
key: ${{ runner.os }}-build-dependencies | |
path: | | |
~/go/bin | |
~/.cargo/bin | |
- run: ./dependency.sh | |
- uses: nick-fields/retry@v3 | |
with: | |
timeout_minutes: 60 | |
max_attempts: 3 | |
command: ./generate.sh | |
- run: ./stat.sh | |
- run: ./guard.sh | |
- name: Checkout ip-lists branch | |
uses: actions/checkout@v3 | |
if: github.event_name == 'schedule' && github.ref == 'refs/heads/master' | |
with: | |
ref: ip-lists | |
path: ip-lists | |
- run: ./upload.sh | |
if: github.event_name == 'schedule' && github.ref == 'refs/heads/master' | |