forked from CosmosContracts/juno
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (28 loc) · 796 Bytes
/
release.yml
File metadata and controls
35 lines (28 loc) · 796 Bytes
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
31
32
33
34
35
---
name: release binary
on:
release:
types: [created]
jobs:
release-alpine-static:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker compose
run: STAKE_TOKEN="ujunox" TIMEOUT_COMMIT=500ms docker-compose up -d
- name: Copy binary
run: docker cp juno_node_1:/usr/bin/junod ./junod
- name: Save sha256 sum
run: sha256sum ./junod > ./junod_sha256.txt
- name: Release
uses: softprops/action-gh-release@v1
with:
token: ${{ github.token }}
files: |
junod
junod_sha256.txt
- name: Dump docker logs on failure
if: failure()
uses: jwalton/gh-docker-logs@v2