Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: verifiable build workflow #530

Merged
merged 18 commits into from
Sep 10, 2024
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
tags:
- v*

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -22,10 +21,9 @@ jobs:
working-directory: ./staking
run: solana-verify build
- name: Publish program binaries
working-directory: ./staking
uses: svenstaro/upload-release-action@133984371c30d34e38222a64855679a414cb7575
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./target/deploy/*.so
file: ./staking/target/deploy/*.so
tag: ${{ github.ref }}
file_glob: true
Loading