Merge pull request #1252 from floschliep/master #309
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: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- run: git config --global --add safe.directory /github/workspace | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.x | |
- run: node scripts/create-everything-list.js | |
- run: node scripts/remove-duplicates.js | |
- run: node scripts/update-number-of-domains.js | |
- run: node scripts/generate-noip.js | |
- run: node scripts/generate-dnsmasq.js | |
- run: node scripts/generate-adguard.js | |
- name: Commit & Push | |
uses: actions-x/commit@v6 | |
with: | |
email: [email protected] | |
name: GitHub Actions | |
branch: master |