Skip to content

Commit

Permalink
minor echo bug
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamguys committed Apr 9, 2024
1 parent 7987507 commit 67199bb
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,7 @@ jobs:


steps:
- name: Mask PASSWORD and USERNAME
run: |
PASSWORD=$(jq -r '.inputs.PASSWORD' $GITHUB_EVENT_PATH)
USERNAME=$(jq -r '.inputs.USERNAME' $GITHUB_EVENT_PATH)
echo ::add-mask::$PASSWORD
echo ::add-mask::$USERNAME
echo PASSWORD=$PASSWORD >> $GITHUB_ENV
echo USERNAME=$USERNAME >> $GITHUB_ENV

- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
Expand All @@ -42,6 +32,12 @@ jobs:
- run: |
pip install -r irctc-captcha-solver/requirements.txt
python3 irctc-captcha-solver/app.py --image-base-64 ""
PASSWORD=$(jq -r '.inputs.PASSWORD' $GITHUB_EVENT_PATH)
USERNAME=$(jq -r '.inputs.USERNAME' $GITHUB_EVENT_PATH)
echo ::add-mask::$PASSWORD
echo ::add-mask::$USERNAME
echo PASSWORD="$PASSWORD" >> $GITHUB_ENV
echo USERNAME="$USERNAME" >> $GITHUB_ENV
# python3 irctc-captcha-solver/app.py --image-base-64 "" is used for models to load before starting tatkal tickets

- name: Install Node.js and npm
Expand Down

0 comments on commit 67199bb

Please sign in to comment.