forked from berty/berty
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (29 loc) · 931 Bytes
/
valist.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Valist Publish
on:
workflow_run:
workflows: [Release]
types: [completed]
jobs:
valist-publish:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: robinraju/[email protected]
with:
repository: "berty/berty"
latest: true
tarBall: true
zipBall: true
fileName: "*"
- uses: tenhaus/get-release-or-tag@v2
id: tag
- uses: valist-io/valist-github-action@v2
with:
private-key: ${{ secrets.VALIST_SIGNER }}
account: berty
project: berty
release: ${{ steps.tag.outputs.tag }}
platform-darwin-amd64: './berty_darwin_amd64.tar.gz'
platform-darwin-arm64: './berty_darwin_arm64.tar.gz'
platform-linux-amd64: './berty_linux_amd64.tar.gz'
platform-windows-amd64: './berty_windows_amd64.zip'