forked from Autumn-27/ScopeSentry-Scan
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.1 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Daily Update Tools
on:
push:
branches:
- main
schedule:
- cron: '0 12 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Update Ksubdomain
run: |
wget https://github.com/boy-hack/ksubdomain/releases/download/v1.9.5/KSubdomain-v1.9.5-linux.tar
tar xvf KSubdomain-v1.9.5-linux.tar
rm -rf KSubdomain-v1.9.5-linux.tar
mv ksubdomain tools/ksubdomain
- name: Update rad
run: |
wget https://github.com/chaitin/rad/releases/download/1.0/rad_linux_amd64.zip
unzip rad_linux_amd64.zip
rm -rf rad_linux_amd64.zip
mv rad_linux_amd64 tools/rad_linux_amd64
- name: Commit and Push changes
run: |
echo $(date +'%Y%m%d') > date.txt
git add .
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -am "$(date +'%Y%m%d')"
git push -v --progress