From e73dbfc2e3d5e48e2ac06d84abf82cc362e4e274 Mon Sep 17 00:00:00 2001 From: Charlie Fish Date: Wed, 9 Jun 2021 15:32:20 -0600 Subject: [PATCH] Adding generate-noip GitHub Action Workflow --- .github/workflows/generate-noip.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/generate-noip.yml diff --git a/.github/workflows/generate-noip.yml b/.github/workflows/generate-noip.yml new file mode 100644 index 0000000..2628120 --- /dev/null +++ b/.github/workflows/generate-noip.yml @@ -0,0 +1,21 @@ +name: CI +on: + push: + +jobs: + generate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: 15.x + - run: node scripts/generate-noip.js + - name: Commit & Push + uses: actions-x/commit@v2 + with: + email: noreply@blocklist.site + name: GitHub Actions + branch: master + -- 2.47.3