Skip to content

Commit

Permalink
Fixes Makefile publish target credential issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Kasaboski committed Feb 10, 2025
1 parent 6e31b8e commit c4987ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
- name: Package and Publish
run: |
make package
SPLUNKBASE_CREDS="${{ secrets.SPLUNKBASE_CREDS }}" make publish
SPLUNKBASE_CREDS='${{ secrets.SPLUNKBASE_CREDS }}' make publish
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ package: packages/flare/bin/vendor

.PHONY: publish
publish: output/flare.tar.gz
curl -u "$(SPLUNKBASE_CREDS)" --request POST https://splunkbase.splunk.com/api/v1/app/7602/new_release/ -F "files[]=@./output/flare.tar.gz" -F "filename=flare.tar.gz" -F "splunk_versions=9.3" -F "visibility=true"
curl -u $$SPLUNKBASE_CREDS --request POST https://splunkbase.splunk.com/api/v1/app/7602/new_release/ -F "files[]=@./output/flare.tar.gz" -F "filename=flare.tar.gz" -F "splunk_versions=9.3" -F "visibility=true"

.PHONY: validate
validate: venv-tools
Expand Down

0 comments on commit c4987ac

Please sign in to comment.