We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 144fad4 commit 22198e5Copy full SHA for 22198e5
.github/workflows/upload_ht_to_ai.yml
@@ -9,14 +9,15 @@ on:
9
jobs:
10
dowload-clean-push:
11
runs-on: ubuntu-latest
12
+ environment: prod
13
steps:
14
# 1. Download the script
- - name: Downlaods script
15
+ - name: Dowload script
16
run: wget "https://raw.githubusercontent.com/HackTricks-wiki/hacktricks-cloud/refs/heads/master/scripts/upload_ht_to_ai.py"
17
18
- name: Install pip dependencies
19
run: python3 -m pip install openai
20
21
# 2. Execute the script
22
- run: python3 "./upload_ht_to_ai.py"
+ - name: Execute script
23
+ run: export MY_OPENAI_API_KEY=${{ secrets.MY_OPENAI_API_KEY }}; python3 "./upload_ht_to_ai.py"
0 commit comments