Skip to content

Commit

Permalink
Merge pull request #106 from jflo/ghaPRAnnot
Browse files Browse the repository at this point in the history
compensate for changes to versioning on interim builds
  • Loading branch information
jflo authored Mar 14, 2024
2 parents cece91c + 054428a commit d262ff1
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,17 @@ jobs:
- name: assemble release
run:
./gradlew assemble
- name: upload tarball
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
path: 'build/distributions/besu*.tar.gz'
name: besu-develop.tar.gz
compression-level: 0
- name: hashes
id: hashes
run: |
cd build/distributions
echo "zipSha=$(shasum -a 256 besu*.zip)" >> $GITHUB_OUTPUT
echo "tarSha=$(shasum -a 256 besu*.tar.gz)" >> $GITHUB_OUTPUT
- name: upload zipfile
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
path: 'build/distributions/besu*.zip'
name: besu-develop.zip
compression-level: 0
- name: rename files
run: |
cd 'build/distributions'
mv besu*.zip besu-develop.zip
mv besu*.tar.gz besu-develop.zip
- name: Upload Release assets
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
with:
Expand All @@ -55,8 +48,8 @@ jobs:
fail_on_unmatched_files: true
append_body: false
files: |
build/distributions/besu*.tar.gz
build/distributions/besu*.zip
build/distributions/besu-develop.tar.gz
build/distributions/besu-develop.zip
body: |
This is an automated, bleeding edge build from the tip of ${{ github.ref_name }}. No promises. YOLO.
Expand Down

0 comments on commit d262ff1

Please sign in to comment.