Skip to content

Commit

Permalink
Merge pull request #100 from ckan/fix-fetch-tags
Browse files Browse the repository at this point in the history
Fetch tags manually in publish workflow
  • Loading branch information
amercader authored Dec 3, 2024
2 parents 2704e6e + cf4d18e commit fbda797
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/reusable-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-tags: true

- name: Fetch tags
# Needed because of actions/checkout#1467
run: |
git fetch --tags --force
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit fbda797

Please sign in to comment.