fix: Workflow job names

This commit is contained in:
Krypton
2023-10-06 08:56:31 +02:00
parent a807b887da
commit 9a27e70d05
2 changed files with 2 additions and 2 deletions

View File

@@ -20,13 +20,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r tools/requirements.txt
- name: Make README file
- name: Make TLD list file
run: python tools/make_tld_list.py
- name: Check if there are any changes
id: verify_diff
run: |
git diff --quiet . || echo "changed=true" >> $GITHUB_OUTPUT
- name: Update README file
- name: Update TLD file
if: steps.verify_diff.outputs.changed == 'true'
run: |
git config --global user.name 'Krypton'