From 22a2e9936069b8d6d8649e412b58c2d874066a4f Mon Sep 17 00:00:00 2001 From: Mike Barry Date: Sun, 24 Oct 2021 14:31:28 -0400 Subject: [PATCH] [skip ci] add sha256/md5 sum to realeases --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4464626b0b..f0be9f0962 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,6 +52,8 @@ jobs: sha: context.sha }) - run: mv flatmap-dist/target/*with-deps.jar flatmap.jar + - run: sha256sum flatmap.jar > flatmap.jar.sha256 + - run: md5sum flatmap.jar > flatmap.jar.md5 - name: Log in to the Container Registry uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: @@ -65,7 +67,7 @@ jobs: tag_name: v${{ github.event.inputs.version }} draft: true files: | - flatmap.jar + flatmap.jar* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: ./scripts/push-release.sh ${{ github.event.inputs.version }}