Skip to content

Commit

Permalink
build: Include sha256 checksum with package
Browse files Browse the repository at this point in the history
  • Loading branch information
jdogmcsteezy committed Apr 5, 2024
1 parent 2eb9b22 commit 6f05b9f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
Expand All @@ -39,7 +39,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
path: target/aerospike-rest-gateway-*.tgz
path: target/aerospike-rest-gateway-*.tgz*
name: aerospike-rest-gateway-pkg
- name: Cleanup Gradle Cache
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ package: clean validatedocs build
cp build/libs/*.jar $(ARCHIVEDIR)
cp $(OPENAPI_SPEC) $(ARCHIVEDIR)
tar -czvf target/$(ARCHIVENAME) $(ARCHIVEDIR)
sha256sum target/$(ARCHIVENAME) > target/$(ARCHIVENAME).sha256


.PHONY: build
build:
Expand Down

0 comments on commit 6f05b9f

Please sign in to comment.