Skip to content

Commit f5ea0f3

Browse files
committed
Disable all Docker secrets since they are not needed (#253)
* Remove the need for Docker secret Signed-off-by: Abolfazl Shahbazi <[email protected]> * Disable all Docker secrets since they are not needed Signed-off-by: Abolfazl Shahbazi <[email protected]> --------- Signed-off-by: Abolfazl Shahbazi <[email protected]>
1 parent e80c1e3 commit f5ea0f3

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/docs-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
http_proxy: ${{ secrets.HTTP_PROXY }}
2222
https_proxy: ${{ secrets.HTTPS_PROXY }}
2323
no_proxy: ${{ secrets.NO_PROXY }}
24-
credentials:
25-
username: ${{ secrets.REGISTRY_USER }}
26-
password: ${{ secrets.REGISTRY_TOKEN }}
24+
# credentials:
25+
# username: ${{ secrets.REGISTRY_USER }}
26+
# password: ${{ secrets.REGISTRY_TOKEN }}
2727
volumes:
2828
- /tf_dataset/dataset/transfer_learning:/tmp/data
2929
steps:

.github/workflows/notebook-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
no_proxy: ${{ secrets.NO_PROXY }}
2727
DATASET_DIR: /tmp/data
2828
OUTPUT_DIR: /tmp/output
29-
credentials:
30-
username: ${{ secrets.REGISTRY_USER }}
31-
password: ${{ secrets.REGISTRY_TOKEN }}
29+
# credentials:
30+
# username: ${{ secrets.REGISTRY_USER }}
31+
# password: ${{ secrets.REGISTRY_TOKEN }}
3232
volumes:
3333
- /tf_dataset/dataset/transfer_learning:/tmp/data
3434
steps:

.github/workflows/style-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
http_proxy: ${{ secrets.HTTP_PROXY }}
2121
https_proxy: ${{ secrets.HTTPS_PROXY }}
2222
no_proxy: ${{ secrets.NO_PROXY }}
23-
credentials:
24-
username: ${{ secrets.REGISTRY_USER }}
25-
password: ${{ secrets.REGISTRY_TOKEN }}
23+
# credentials:
24+
# username: ${{ secrets.REGISTRY_USER }}
25+
# password: ${{ secrets.REGISTRY_TOKEN }}
2626
steps:
2727
- uses: actions/checkout@v3
2828
- name: Install virtualenv

.github/workflows/unit-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
http_proxy: ${{ secrets.HTTP_PROXY }}
2525
https_proxy: ${{ secrets.HTTPS_PROXY }}
2626
no_proxy: ${{ secrets.NO_PROXY }}
27-
credentials:
28-
username: ${{ secrets.REGISTRY_USER }}
29-
password: ${{ secrets.REGISTRY_TOKEN }}
27+
# credentials:
28+
# username: ${{ secrets.REGISTRY_USER }}
29+
# password: ${{ secrets.REGISTRY_TOKEN }}
3030
volumes:
3131
- /tf_dataset/dataset/transfer_learning:/tmp/data
3232
steps:

0 commit comments

Comments
 (0)