File tree Expand file tree Collapse file tree 1 file changed +20
-20
lines changed Expand file tree Collapse file tree 1 file changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -86,26 +86,26 @@ jobs:
86
86
command : build
87
87
args : --release --target ${{ matrix.target }}
88
88
89
- - name : Generate SHA256
90
- shell : bash
91
- run : |
92
- binary_path="target/${{ matrix.target }}/release/horizon"
93
- if [ "${{ matrix.os }}" = "windows-latest" ]; then
94
- binary_path="target/${{ matrix.target }}/release/horizon.exe"
95
- fi
96
-
97
- if [ ! -f "$binary_path" ]; then
98
- echo "Binary not found at $binary_path"
99
- ls -la target/
100
- ls -la target/${{ matrix.target }}/release/
101
- exit 1
102
- fi
103
-
104
- if [ "${{ matrix.os }}" = "windows-latest" ]; then
105
- sha256sum "$binary_path" > "$binary_path.sha256"
106
- else
107
- shasum -a 256 "$binary_path" > "$binary_path.sha256"
108
- fi
89
+ # - name: Generate SHA256
90
+ # shell: bash
91
+ # run: |
92
+ # binary_path="target/${{ matrix.target }}/release/horizon"
93
+ # if [ "${{ matrix.os }}" = "windows-latest" ]; then
94
+ # binary_path="target/${{ matrix.target }}/release/horizon.exe"
95
+ # fi
96
+ #
97
+ # if [ ! -f "$binary_path" ]; then
98
+ # echo "Binary not found at $binary_path"
99
+ # ls -la target/
100
+ # ls -la target/${{ matrix.target }}/release/
101
+ # exit 1
102
+ # fi
103
+ #
104
+ # if [ "${{ matrix.os }}" = "windows-latest" ]; then
105
+ # sha256sum "$binary_path" > "$binary_path.sha256"
106
+ # else
107
+ # shasum -a 256 "$binary_path" > "$binary_path.sha256"
108
+ # fi
109
109
110
110
# - name: Upload Binary
111
111
# uses: actions/upload-release-asset@v1
You can’t perform that action at this time.
0 commit comments