Skip to content

Commit 2515261

Browse files
Merge pull request #194 from Far-Beyond-Dev/tristanpoland-patch-3
Update main.yml
2 parents e0494d8 + a0eacc7 commit 2515261

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/main.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -86,26 +86,26 @@ jobs:
8686
command: build
8787
args: --release --target ${{ matrix.target }}
8888

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
109109

110110
# - name: Upload Binary
111111
# uses: actions/upload-release-asset@v1

0 commit comments

Comments
 (0)