We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a6171 commit aadbc68Copy full SHA for aadbc68
.github/workflows/release.yaml
@@ -24,4 +24,3 @@ jobs:
24
goversion: https://go.dev/dl/go1.20.3.linux-amd64.tar.gz
25
extra_files: README.md
26
build_command: make build
27
- project_path: dists
.gitignore
@@ -1 +1 @@
1
-dists
+aws-dynamodb-cache-lambda-extension
Makefile
@@ -1,13 +1,13 @@
GO ?= go
2
-GOFMT ?= $(GO)fmt
+GOFMT ?= $(GO) fmt
3
4
VERSION ?= $(shell cat VERSION)
5
GIT_BRANCH ?= $(subst /,-,$(shell git rev-parse --abbrev-ref HEAD))
6
GIT_COMMIT ?= $(shell git rev-parse HEAD)
7
USER ?= $(shell echo $USER)
8
DATE ?= $(shell echo `date`)
9
10
-APP_BIN ?= dists/aws-dynamodb-cache-lambda-extension
+APP_BIN ?= aws-dynamodb-cache-lambda-extension
11
APP_SRC ?= main.go
12
13
0 commit comments