Skip to content

Commit 547decb

Browse files
committed
fix: poprawienie ścieżek uruchomienia skryptu
1 parent b6fa0db commit 547decb

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/actions/validate-organizations/action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,12 @@ runs:
2424
- name: Install dependencies
2525
shell: bash
2626
run: |
27-
cd ${{ github.action_path }}
28-
pip install -r requirements.txt
27+
pip install -r ${{ github.action_path }}/requirements.txt
2928
3029
- name: Validate organizations
3130
shell: bash
3231
run: |
33-
cd ${{ github.action_path }}
34-
python validate.py \
32+
python ${{ github.action_path }}/validate.py \
3533
--files "${{ inputs.files }}" \
3634
--organizations-dir "${{ inputs.organizations-dir }}" \
3735
--slug-field "${{ inputs.slug-field }}"

.github/workflows/organization-update.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
steps:
3535
- name: Pobranie kodu
3636
uses: actions/checkout@v4
37-
with:
38-
fetch-depth: 0
3937

4038
- name: Wykrycie zmienionych plików organizacji
4139
id: changed-files

0 commit comments

Comments
 (0)