Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Eclipse-Dominator committed Jun 1, 2023
1 parent f44c773 commit a1f614d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,19 @@ runs:
python-version: '3.11'

- name: Install dependencies
run: pip install -r requirements.txt
run: pip install -r ${{ github.action_path }}/requirements.txt
shell: bash

- name: Checkout code
uses: actions/[email protected]

- name: Run script
env:
GIT_SECRET: ${{ inputs.secret }}
GIT_TARGET_REPO: ${{ inputs.repo || env.GITHUB_REPOSITORY }}
DIGEST_SAVE_DIR: ${{ inputs.save }}
run: |
python app.py
ls -la
ls .github/
python ${{ github.action_path }}/app.py
shell: bash

- name: Push changes if there are changes to the data file
Expand Down

0 comments on commit a1f614d

Please sign in to comment.