mirror of
https://github.com/C24Be/AS_Network_List.git
synced 2026-01-25 15:31:12 +03:00
30 lines
482 B
YAML
30 lines
482 B
YAML
name: BlackLists updater
|
|
|
|
env:
|
|
#GITHUB_TOKEN: ${{ secrets.GHUB_TOKEN }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: 'Blacklists/update'
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.11
|
|
- run: ./requirements.sh
|
|
- run: ./blacklists_updater.sh
|
|
- run: cat blacklist*txt
|