Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pdabelf5 committed Apr 17, 2024
1 parent 9f735d3 commit 6a47873
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
echo "packaging_md5=$packaging_md5" >> $GITHUB_OUTPUT
actions_md5=$(find .github -type f -exec md5sum {} + | LC_ALL=C sort | md5sum | awk '{ print $1 }')
echo "actions_md5=$actions_md5" >> $GITHUB_OUTPUT
package_build_md5=$(echo "$go_code_md5 $package_md5 | md5sum | awk '{ print $1 }'")
package_build_md5=$(echo "$go_code_md5 $package_md5" | md5sum | awk '{ print $1 }')
echo "package_build_md5=$package_build_md5" >> $GITHUB_OUTPUT
cat $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion Makefile.packaging
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AZURE_PACKAGES_DIR := ./build/azure/packages
BINARY_PATH := $(BUILD_DIR)/$(BINARY_NAME)
GPG_PUBLIC_KEY := .key
PACKAGE_RELEASE ?= 1
PACKAGE_VERSION := $(shell echo ${VERSION} | tr -d 'v').$(PACKAGE_RELEASE)
PACKAGE_VERSION := $(shell echo ${VERSION} | tr -d 'v')-$(PACKAGE_RELEASE)
TARBALL_NAME := $(PACKAGE_PREFIX)v3.tar.gz

DEB_DISTROS ?= ubuntu-noble-24.04 ubuntu-jammy-22.04 ubuntu-focal-20.04 debian-bookworm-12 debian-bullseye-11
Expand Down

0 comments on commit 6a47873

Please sign in to comment.