Skip to content

Commit e94b8f2

Browse files
committed
fix: remove auth on workflow
1 parent 96061c2 commit e94b8f2

File tree

4 files changed

+0
-45
lines changed

4 files changed

+0
-45
lines changed

.github/workflows/upload-pypi-core.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,11 @@ on:
88
- "libs/core/**"
99
- "!libs/core/pyproject.toml"
1010
workflow_dispatch:
11-
inputs:
12-
security-token:
13-
description: 'Security token to trigger this workflow'
14-
required: true
15-
type: string
1611

1712
jobs:
1813
deploy:
1914
runs-on: ubuntu-latest
2015
steps:
21-
- name: Check security token
22-
run: |
23-
if [[ "${{ github.event.inputs.security-token }}" != "${{ secrets.SECURITY_TOKEN }}" ]]; then
24-
echo "Unauthorized access attempt detected."
25-
exit 1
26-
fi
27-
2816
# Checkout the code
2917
- name: Checkout code
3018
uses: actions/checkout@v3

.github/workflows/upload-pypi-proxy.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,11 @@ on:
88
- "libs/proxy/**"
99
- "!libs/proxy/pyproject.toml"
1010
workflow_dispatch:
11-
inputs:
12-
security-token:
13-
description: 'Security token to trigger this workflow'
14-
required: true
15-
type: string
1611

1712
jobs:
1813
deploy:
1914
runs-on: ubuntu-latest
2015
steps:
21-
- name: Check security token
22-
run: |
23-
if [[ "${{ github.event.inputs.security-token }}" != "${{ secrets.SECURITY_TOKEN }}" ]]; then
24-
echo "Unauthorized access attempt detected."
25-
exit 1
26-
fi
2716
# Checkout the code
2817
- name: Checkout code
2918
uses: actions/checkout@v3

.github/workflows/upload-pypi-sdk.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,11 @@ on:
88
- "libs/llmstudio/**"
99
- "!libs/llmstudio/pyproject.toml"
1010
workflow_dispatch:
11-
inputs:
12-
security-token:
13-
description: 'Security token to trigger this workflow'
14-
required: true
15-
type: string
1611

1712
jobs:
1813
deploy:
1914
runs-on: ubuntu-latest
2015
steps:
21-
- name: Check security token
22-
run: |
23-
if [[ "${{ github.event.inputs.security-token }}" != "${{ secrets.SECURITY_TOKEN }}" ]]; then
24-
echo "Unauthorized access attempt detected."
25-
exit 1
26-
fi
2716
# Checkout the code
2817
- name: Checkout code
2918
uses: actions/checkout@v3

.github/workflows/upload-pypi-tracker.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,11 @@ on:
88
- "libs/tracker/**"
99
- "!libs/tracker/pyproject.toml"
1010
workflow_dispatch:
11-
inputs:
12-
security-token:
13-
description: 'Security token to trigger this workflow'
14-
required: true
15-
type: string
1611

1712
jobs:
1813
deploy:
1914
runs-on: ubuntu-latest
2015
steps:
21-
- name: Check security token
22-
run: |
23-
if [[ "${{ github.event.inputs.security-token }}" != "${{ secrets.SECURITY_TOKEN }}" ]]; then
24-
echo "Unauthorized access attempt detected."
25-
exit 1
26-
fi
2716
# Checkout the code
2817
- name: Checkout code
2918
uses: actions/checkout@v3

0 commit comments

Comments
 (0)