Skip to content

Commit

Permalink
Merge pull request #374 from cfergeau/autorelease
Browse files Browse the repository at this point in the history
ghactions: Automatically create gh releases
  • Loading branch information
openshift-merge-bot[bot] authored Aug 21, 2024
2 parents bc89949 + 36b48f7 commit c53fec5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,12 @@ jobs:
with:
name: gvisor-tap-vsock-binaries
path: bin/*

- name: Create release on github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create --draft --generate-notes --verify-tag ${{github.ref_name}}
cd bin
sha256sum * >> sha256sums
gh release upload ${{github.ref_name}} *

0 comments on commit c53fec5

Please sign in to comment.