Hash Hunter CI #794
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: Hash Hunter CI | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 * * * *' # Runs every hour | |
jobs: | |
build-and-run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Build | |
run: cargo build --release | |
- name: Run Hash Hunter | |
run: ./target/release/hash_hunter -p 000000 -c -s 100000 -m 100000000 -i 10000 -y | |
- name: Upload Results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: generated-addresses | |
path: ./gen/ |