Skip to content

Commit

Permalink
修复 DEB 版本号判断问题
Browse files Browse the repository at this point in the history
  • Loading branch information
lanthora committed Jun 12, 2024
1 parent 1a1ac2f commit 1177d1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ jobs:
docker-image: ${{ matrix.image }}
buildpackage-opts: --build=binary --no-sign
extra-build-deps: git-buildpackage
before-build-hook: dch --package candy -v "$(git tag -l | tail -n1 | sed 's/v//g')+${{ env.ARTIFACT_NAME }}" -D stable --create "CI BUILD"
before-build-hook: dch --package candy -v "$(git tag --sort=-creatordate | head -n1 | sed 's/v//g')+${{ env.ARTIFACT_NAME }}" -D stable --create "CI BUILD"
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
docker-image: ${{ matrix.image }}
buildpackage-opts: --build=binary --no-sign
extra-build-deps: git-buildpackage
before-build-hook: dch --package candy -v "$(git tag -l | tail -n1 | sed 's/v//g')+${{ env.ARTIFACT_NAME }}" -D stable --create "CI BUILD"
before-build-hook: dch --package candy -v "$(git tag --sort=-creatordate | head -n1 | sed 's/v//g')+${{ env.ARTIFACT_NAME }}" -D stable --create "CI BUILD"
- name: upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 1177d1d

Please sign in to comment.