Skip to content

Commit

Permalink
generate IP action
Browse files Browse the repository at this point in the history
  • Loading branch information
mukeenanyafiq authored Aug 9, 2024
1 parent fed7fae commit bdbf01d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/generate-IPs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Generate 4 billion IPs"

on:
workflow_dispatch:
push:
branches:
- master

jobs:
generate-ips:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: npm install

- name: Run IP generation script
run: node generate4BillionIPs.js

0 comments on commit bdbf01d

Please sign in to comment.