Skip to content

Commit f240293

Browse files
authored
Update release GOPROXY (#1101)
* use prod proxy, remove gpg key upload * dont strip symbol table from local package builds * remove debug flags from local package builds
1 parent 04b535a commit f240293

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242

4343
env:
4444
NFPM_VERSION: 'v2.35.3'
45-
GOPROXY: "https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-dev"
45+
GOPROXY: "https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-prod"
4646

4747
defaults:
4848
run:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ run: build ## Run code
181181

182182
dev: ## Run agent executable
183183
@echo "🚀 Running App"
184-
$(GORUN) -ldflags=$(LDFLAGS) $(PROJECT_DIR)/$(PROJECT_FILE)
184+
$(GORUN) -ldflags=$(DEBUG_LDFLAGS) $(PROJECT_DIR)/$(PROJECT_FILE)
185185

186186
race-condition-dev: ## Run agent executable with race condition detection
187187
@echo "🏎️ Running app with race condition detection enabled"

Makefile.packaging

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,4 +213,3 @@ gpg-key: ## Generate GPG public key
213213
release: ## Publish tarball to the UPLOAD_URL
214214
echo "Publishing nginx-agent packages to ${UPLOAD_URL}"; \
215215
curl -XPOST --fail -F "file=@$(PACKAGES_DIR)/$(TARBALL_NAME)" -H "Token: ${TOKEN}" ${UPLOAD_URL}; \
216-
curl -XPOST --fail -F "file=@$(GPG_PUBLIC_KEY)" -H "Token: ${TOKEN}" ${UPLOAD_URL}; \

0 commit comments

Comments
 (0)