Skip to content

Commit

Permalink
Fix error caused by GitHub Actions bug actions/checkout#1467
Browse files Browse the repository at this point in the history
  • Loading branch information
salcc committed Nov 16, 2024
1 parent 64fc462 commit f4a5569
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Get tags
run: git fetch --tags origin

- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -77,8 +77,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Get tags
run: git fetch --tags origin

- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -119,8 +119,8 @@ jobs:
# Build and publish to PyPI
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-tags: true
- name: Get tags
run: git fetch --tags origin

- name: Set up Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit f4a5569

Please sign in to comment.