Re-arange steps

This commit is contained in:
Balazs Perlaki-Horvath 2024-02-14 09:42:29 +01:00
parent 6169f9d480
commit 84fef1d5d6

View File

@ -30,8 +30,11 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with:
path: custom path: custom
- name: Install Python dependencies for custom project generation
run: python -m pip install pyyaml
- name: Test python scripts - name: Test python scripts
run: | run: |
cd custom cd custom
@ -40,7 +43,7 @@ jobs:
- name: Set test tag variable as an output - name: Set test tag variable as an output
id: vars id: vars
run: echo "tag=testapp_2023.12.1" >> $GITHUB_OUTPUT run: echo "tag=testapp_2023.12.1" >> $GITHUB_OUTPUT
- name: Validate and parse the tag - name: Validate and parse the tag
run: run:
@ -54,9 +57,6 @@ jobs:
with: with:
repository: kiwix/apple repository: kiwix/apple
path: apple path: apple
- name: Install Python dependencies for custom project generation
run: python -m pip install pyyaml
- name: Install Kiwix dependencies - name: Install Kiwix dependencies
run: | # remove pre-commit, it's not needed for CI run: | # remove pre-commit, it's not needed for CI