Skip to content

Commit

Permalink
Merge pull request #1 from TonyWu3027/BloccProtocol
Browse files Browse the repository at this point in the history
ci: create release for binaries
  • Loading branch information
TonyWu3027 authored Jul 24, 2023
2 parents 9c168f9 + 59c6119 commit 525ade6
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
env:
GO_VER: 1.20.4
UBUNTU_VER: 20.04
FABRIC_VER: ${{ github.ref_name }}
FABRIC_VER: v2.5.1

permissions:
contents: read
Expand Down Expand Up @@ -119,3 +119,25 @@ jobs:
UBUNTU_VER=${{ env.UBUNTU_VER }}
GO_VER=${{ env.GO_VER }}
GO_TAGS=
create-release:
name: Create GitHub Release
needs:
- build-binaries
- build-and-push-docker-images
runs-on: fabric-ubuntu-20.04
permissions:
contents: write
steps:
- name: Checkout Fabric Code
uses: actions/checkout@v3
- name: Download Artifacts
id: download
uses: actions/download-artifact@v3
- name: Release Fabric Version
uses: ncipollo/release-action@v1
with:
allowUpdates: "true"
artifacts: "release-*-*/*.tar.gz"
tag: latest
name: BLOCC Fabric Binaries

0 comments on commit 525ade6

Please sign in to comment.