File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 19
19
- name : Checkout code
20
20
uses : actions/checkout@v4
21
21
22
- # Build binaries
22
+ # Build binaries and SHA files
23
23
- name : Run dapper ci
24
24
run : dapper ci
25
25
30
30
files : |
31
31
dist/artifacts/rancherd-amd64
32
32
dist/artifacts/rancherd-arm64
33
+ dist/artifacts/sha256sum-amd64.txt
34
+ dist/artifacts/sha256sum-arm64.txt
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ set -e
3
+
4
+ source $( dirname $0 ) /version
5
+
6
+ cd $( dirname $0 ) /..
7
+
8
+ mkdir -p dist/artifacts/
9
+ pushd bin/
10
+ sha256sum rancherd-amd64 > ../dist/artifacts/sha256sum-amd64.txt
11
+ sha256sum rancherd-arm64 > ../dist/artifacts/sha256sum-arm64.txt
12
+ popd
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ cd $(dirname $0)
7
7
./test
8
8
./validate
9
9
./package
10
+ ./build-sha-file
You can’t perform that action at this time.
0 commit comments