Skip to content

Commit

Permalink
Is sha256deep available? https://www.kali.org/tools/hashdeep/
Browse files Browse the repository at this point in the history
  • Loading branch information
Guardian Automated Maven Release committed Dec 4, 2023
1 parent bae07bf commit 62104d3
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/isolated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,20 +170,16 @@ jobs:
echo "KEY_FINGERPRINT=$KEY_FINGERPRINT"
find /tmp/funky -type f -exec gpg -a --local-user "$KEY_FINGERPRINT" --detach-sign {} \;
ls -lR /tmp/funky
sha256deep -r -l /tmp/funky
- uses: actions/cache/save@v3
with:
path: /tmp/funky
key: signed-${{ github.run_id }}-${{ github.run_attempt }}

release:
name: 🔒 Release
sonatype-release:
name: 🔒 Sonatype Release
needs: sign
runs-on: ubuntu-latest
permissions:
contents: write
env:
SONATYPE_USERNAME: guardian.automated.maven.release
SONATYPE_PASSWORD: ${{ secrets.AUTOMATED_MAVEN_RELEASE_SONATYPE_PASSWORD }}
steps:
- uses: actions/cache/restore@v3
with:
Expand All @@ -208,11 +204,24 @@ jobs:
java-version: 17
cache: sbt
- name: Release
env:
SONATYPE_USERNAME: guardian.automated.maven.release
SONATYPE_PASSWORD: ${{ secrets.AUTOMATED_MAVEN_RELEASE_SONATYPE_PASSWORD }}
run: |
sbt "sonatypeBundleRelease"
github-release:
name: 🔒 GitHub Release
needs: sign
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Create Github Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
RELEASE_TAG: ${{ needs.push-release-commit.outputs.release_tag }}
run: |
gh release create RELEASE_TAG --generate-notes --verify-tag
gh release create $RELEASE_TAG --generate-notes --verify-tag

0 comments on commit 62104d3

Please sign in to comment.