Skip to content

Commit dc4ddc0

Browse files
check for AWS secret instead of generic secret (#8656)
* check for AWS secret instead of generic secret * fix file extension
1 parent bc90d71 commit dc4ddc0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-linux-arm64-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
run: |
153153
ls ${{ github.workspace }}/build_scripts/final_installer/
154154
aws s3 cp ${{ github.workspace }}/build_scripts/final_installer/chia-blockchain_${CHIA_INSTALLER_VERSION}_arm64.deb s3://download-chia-net/install/
155-
aws s3 cp ${{ github.workspace }}/build_scripts/final_installer/chia-blockchain_${CHIA_INSTALLER_VERSION}_arm64.sha256 s3://download-chia-net/install/
155+
aws s3 cp ${{ github.workspace }}/build_scripts/final_installer/chia-blockchain_${CHIA_INSTALLER_VERSION}_arm64.deb.sha256 s3://download-chia-net/install/
156156
aws s3 cp ${{ github.workspace }}/build_scripts/final_installer/chia-blockchain_${CHIA_INSTALLER_VERSION}_arm64.deb.torrent s3://download-chia-net/torrents/
157157
158158
- name: Get tag name

.github/workflows/build-macos-m1-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
ls ${{ github.workspace }}/build_scripts/final_installer/
136136
137137
- name: Upload Beta Installer
138-
if: steps.check_secrets.outputs.HAS_SECRET && github.ref == 'refs/heads/main'
138+
if: steps.check_secrets.outputs.HAS_AWS_SECRET && github.ref == 'refs/heads/main'
139139
env:
140140
CHIA_INSTALLER_VERSION: ${{ steps.version_number.outputs.CHIA_INSTALLER_VERSION }}
141141
AWS_ACCESS_KEY_ID: ${{ secrets.INSTALLER_UPLOAD_KEY }}

.github/workflows/build-windows-installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
ls
160160
161161
- name: Upload Beta Installer
162-
if: steps.check_secrets.outputs.HAS_SECRET && github.ref == 'refs/heads/main'
162+
if: steps.check_secrets.outputs.HAS_AWS_SECRET && github.ref == 'refs/heads/main'
163163
env:
164164
CHIA_INSTALLER_VERSION: ${{ steps.version_number.outputs.CHIA_INSTALLER_VERSION }}
165165
run: |

0 commit comments

Comments
 (0)