Skip to content

Commit

Permalink
Fix docker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sirrobot01 committed Dec 18, 2024
1 parent 357da54 commit 58c0aaf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Get version
id: get_version
run: |
echo "latest_tag=$(git tag | sort --version-sort | tail -n1)" >> $GITHUB_ENV
echo "latest tag: $latest_tag"
echo "All tags:"
git tag
LATEST_TAG=$(git tag | sort -V | tail -n1)
echo "latest_tag=${LATEST_TAG}" >> $GITHUB_ENV
echo "Found tag: ${LATEST_TAG}"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 58c0aaf

Please sign in to comment.