Skip to content

Commit

Permalink
add workflow to verify artifacts
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Fernandes <[email protected]>
  • Loading branch information
joshuafernandes committed Dec 19, 2024
1 parent a03c98b commit 519da4f
Show file tree
Hide file tree
Showing 3 changed files with 282 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,3 +396,24 @@ jobs:
ARTIFACTORY_USER: ${{ secrets.BESU_ARTIFACTORY_USER }}
ARTIFACTORY_KEY: ${{ secrets.BESU_ARTIFACTORY_TOKEN }}
run: ./gradlew -Prelease.releaseVersion=${{ env.RELEASE_VERSION }} -Pversion=${{env.RELEASE_VERSION}} artifactoryPublish

verify_artifactory:
runs-on: ubuntu-22.04
needs: [artifactory, validate, test-linux, test-windows]
steps:
- name: checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: ${{ env.RELEASE_VERSION }}

- uses: actions/setup-python@v5
with:
python-version: '3.13'
cache: 'pip'

- name: Install dependencies
run: pip install requests argparse

- name: Run the script
run: python3 verify_artifacts.py --besu_version="${{ needs.validate.outputs.release_version }}"

Loading

0 comments on commit 519da4f

Please sign in to comment.