forked from shadowcopyrz/etkg
-
Notifications
You must be signed in to change notification settings - Fork 0
143 lines (130 loc) · 5.26 KB
/
eset.yml
File metadata and controls
143 lines (130 loc) · 5.26 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: Account and Key Generator
on:
# schedule: #if need schedule
# - cron: "0 */2 * * *"
workflow_dispatch:
inputs:
account:
description: 'Number of Accounts to be generated (default = 0)'
required: false
default: '0'
type: string
key:
description: 'Number of Keys to be generated (default = 1)'
required: false
default: '1'
type: string
mail:
description: 'Choose the mail provider to generate license'
required: true
type: choice
options:
- 1secmail
- guerrillamail
- developermail
- mailticking
- fakemail
- inboxes
- incognitomail
- emailfake
default: emailfake
key_type:
description: 'Modes of operation'
required: true
type: choice
options:
- --key
- --small-business-key
default: --key
os:
description: 'Operating System of runner (Linux, macOS, Windows)'
required: true
type: choice
options:
- ubuntu-latest
- macos-latest
- windows-latest
default: windows-latest
branch:
description: "Repository branch (don't touch it if you don't know what it is!!!)"
required: false
type: choice
options:
- main
- test
default: main
jobs:
generate-account-and-key:
runs-on: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.os || 'windows-latest' }} #if fallback then
steps:
- name: Set Variables
id: vars
shell: bash
run: |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
echo "account=${{ github.event.inputs.account }}" >> $GITHUB_OUTPUT
echo "key=${{ github.event.inputs.key }}" >> $GITHUB_OUTPUT
echo "mail=${{ github.event.inputs.mail }}" >> $GITHUB_OUTPUT
echo "key_type=${{ github.event.inputs.key_type }}" >> $GITHUB_OUTPUT
echo "branch=${{ github.event.inputs.branch }}" >> $GITHUB_OUTPUT
else #if fallback then
echo "account=0" >> $GITHUB_OUTPUT
echo "key=1" >> $GITHUB_OUTPUT
echo "mail=emailfake" >> $GITHUB_OUTPUT
echo "key_type=--key" >> $GITHUB_OUTPUT
echo "branch=main" >> $GITHUB_OUTPUT
fi
- name: Checkout Repository
uses: actions/checkout@v4
- name: Clone Repository
run: git clone -b "${{ steps.vars.outputs.branch }}" https://github.com/shadowcopyrz/etkg.git
- name: Setup & Run Script (Linux/macOS)
if: runner.os != 'Windows'
shell: bash
run: |
cd etkg
if [[ "$RUNNER_OS" == "macOS" ]]; then
brew install python@3.11 || true
else
sudo apt update
sudo apt install -y python3-pip python3-venv
fi
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
ACCOUNT="${{ steps.vars.outputs.account }}"
KEY="${{ steps.vars.outputs.key }}"
MAIL="${{ steps.vars.outputs.mail }}"
KEY_TYPE="${{ steps.vars.outputs.key_type }}"
if [[ "$ACCOUNT" != "0" ]]; then
python3 main.py --auto-detect-browser --account --email-api "$MAIL" --skip-update-check --no-logo --disable-progress-bar --disable-logging --repeat "$ACCOUNT"
echo "Account:" >> $GITHUB_STEP_SUMMARY
cat ./*ACCOUNTS.txt >> $GITHUB_STEP_SUMMARY 2>/dev/null || echo "None" >> $GITHUB_STEP_SUMMARY
fi
if [[ "$KEY" != "0" ]]; then
python3 main.py --auto-detect-browser "$KEY_TYPE" --email-api "$MAIL" --skip-update-check --no-logo --disable-progress-bar --disable-logging --repeat "$KEY"
echo -e "\nKey:" >> $GITHUB_STEP_SUMMARY
cat ./*KEYS.txt >> $GITHUB_STEP_SUMMARY 2>/dev/null || echo "None" >> $GITHUB_STEP_SUMMARY
fi
- name: Setup & Run Script (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
cd etkg
python -m venv venv
.\venv\Scripts\pip install -r requirements.txt
.\venv\Scripts\Activate.ps1
$ACCOUNT = "${{ steps.vars.outputs.account }}"
$KEY = "${{ steps.vars.outputs.key }}"
$MAIL = "${{ steps.vars.outputs.mail }}"
$KEY_TYPE = "${{ steps.vars.outputs.key_type }}"
if ($ACCOUNT -ne 0) {
python main.py --auto-detect-browser --account --email-api "$MAIL" --skip-update-check --no-logo --disable-progress-bar --disable-logging --repeat $ACCOUNT
echo "Account:" | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append
Get-Content -Path ./*ACCOUNTS.txt -ErrorAction SilentlyContinue | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append
}
if ($KEY -ne 0) {
python main.py --auto-detect-browser "$KEY_TYPE" --email-api "$MAIL" --skip-update-check --no-logo --disable-progress-bar --disable-logging --repeat $KEY
echo "`nKey:" | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append
Get-Content -Path ./*KEYS.txt -ErrorAction SilentlyContinue | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append
}