Commit 9cbc2ca 1 parent 0f6286b commit 9cbc2ca Copy full SHA for 9cbc2ca
File tree 10 files changed +287
-170
lines changed
10 files changed +287
-170
lines changed Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- master
6
- - feat/chat-example
7
6
permissions : write-all
8
7
jobs :
9
8
metadata :
25
24
env :
26
25
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
27
26
run : |
28
- RELEASE_URL=$(curl --silent "https://api.github.com/repos/calimero-network/relay-server /releases/tags/${{ steps.get_version.outputs.version }}" \
27
+ RELEASE_URL=$(curl --silent "https://api.github.com/repos/calimero-network/boot-node /releases/tags/${{ steps.get_version.outputs.version }}" \
29
28
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
30
29
-H "Accept: application/vnd.github.v3+json" | jq -r '.url')
31
30
if [[ "$RELEASE_URL" != "null" ]]; then
Original file line number Diff line number Diff line change 24
24
env :
25
25
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
26
run : |
27
- RELEASE_URL=$(curl --silent "https://api.github.com/repos/calimero-network/relay-server /releases/tags/${{ steps.get_version.outputs.version }}" \
27
+ RELEASE_URL=$(curl --silent "https://api.github.com/repos/calimero-network/boot-node /releases/tags/${{ steps.get_version.outputs.version }}" \
28
28
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
29
29
-H "Accept: application/vnd.github.v3+json" | jq -r '.url')
30
30
if [[ "$RELEASE_URL" != "null" ]]; then
Original file line number Diff line number Diff line change 24
24
env :
25
25
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
26
run : |
27
- RELEASE_URL=$(curl --silent "https://api.github.com/repos/calimero-network/relay-server /releases/tags/${{ steps.get_version.outputs.version }}" \
27
+ RELEASE_URL=$(curl --silent "https://api.github.com/repos/calimero-network/boot-node /releases/tags/${{ steps.get_version.outputs.version }}" \
28
28
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
29
29
-H "Accept: application/vnd.github.v3+json" | jq -r '.url')
30
30
if [[ "$RELEASE_URL" != "null" ]]; then
@@ -57,15 +57,11 @@ jobs:
57
57
- name : Build for Aarch Linux
58
58
run : cross build --release --target=aarch64-unknown-linux-gnu
59
59
60
- - name : Build for ARMv7 Linux
61
- run : cross build --release --target=armv7-unknown-linux-gnueabihf
62
-
63
60
- name : Create artifacts directory
64
61
run : |
65
62
mkdir -p artifacts
66
- cp target/x86_64-unknown-linux-gnu/release/relay-server artifacts/relay-server-x86_64-unknown-linux
67
- cp target/aarch64-unknown-linux-gnu/release/relay-server artifacts/relay-server-aarch64-unknown-linux
68
- cp target/armv7-unknown-linux-gnueabihf/release/relay-server artifacts/relay-server-armv7-unknown-linux
63
+ cp target/x86_64-unknown-linux-gnu/release/boot-node artifacts/boot-node-x86_64-unknown-linux
64
+ cp target/aarch64-unknown-linux-gnu/release/boot-node artifacts/boot-node-aarch64-unknown-linux
69
65
70
66
- name : Create GitHub Release
71
67
uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments