Fix version generation

This commit is contained in:
ErickSkrauch 2023-12-13 01:23:53 +01:00
parent 8959e53270
commit 6cb5e1eb42
No known key found for this signature in database
GPG Key ID: 669339FCBB30EE0E
2 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,8 @@ jobs:
SHORT_SHA=$(git rev-parse --short $GITHUB_SHA)
VERSION="${BRANCH_NAME}-${SHORT_SHA}"
fi
echo "version=$VERSION" >> $GITHUB_ENV
echo "### Version: $VERSION" >> $GITHUB_STEP_SUMMARY
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
@ -62,4 +63,4 @@ jobs:
platforms: linux/amd64,linux/arm64
build-args: |
VERSION=${{ steps.version.output.version }}
COMMIT=${{ github.ref }}
COMMIT=${{ github.sha }}

View File

@ -12,8 +12,7 @@ RUN go mod download
RUN CGO_ENABLED=0 \
go build \
-trimpath \
-ldflags "-X github.com/elyby/chrly/version.version=$VERSION -X github.com/elyby/chrly/version.commit=$COMMIT" \
-ldflags="-w -s" \
-ldflags "-w -s -X github.com/elyby/chrly/version.version=$VERSION -X github.com/elyby/chrly/version.commit=$COMMIT" \
-o chrly \
main.go