Skip to content

Commit 08ae8a8

Browse files
committed
Hardcoded upload packages to dev bucket for testing
1 parent 3368e00 commit 08ae8a8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build_native_linux_packages.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
ARTIFACTS_DIR: ${{ github.workspace }}/output/artifacts
8686
PACKAGE_DIST_DIR: ${{ github.workspace }}/output/packages
8787
RELEASE_TYPE: ${{ inputs.release_type || '' }}
88-
S3_BUCKET_NATIVE: "therock-${{ inputs.release_type }}-packages"
88+
S3_BUCKET_NATIVE: "therock-dev-packages"
8989
steps:
9090
- name: "Checking out repository"
9191
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
@@ -130,7 +130,9 @@ jobs:
130130
--target ${{ inputs.artifact_group }} \
131131
--artifacts-dir ${{ env.ARTIFACTS_DIR }} \
132132
--pkg-type ${{ inputs.native_package_type }} \
133-
--version-suffix ${{ env.ARTIFACT_RUN_ID }}
133+
--version-suffix ${{ env.ARTIFACT_RUN_ID }} \
134+
----enable-multi-arch
135+
134136
135137
- name: Install AWS CLI
136138
run: bash ./dockerfiles/install_awscli.sh
@@ -139,7 +141,7 @@ jobs:
139141
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
140142
with:
141143
aws-region: us-east-2
142-
role-to-assume: arn:aws:iam::692859939525:role/therock-${{ inputs.release_type }}
144+
role-to-assume: arn:aws:iam::692859939525:role/therock-dev
143145

144146
- name: Upload Package repo to S3
145147
id: upload-packages
@@ -150,4 +152,4 @@ jobs:
150152
--s3-bucket ${{ env.S3_BUCKET_NATIVE }} \
151153
--amdgpu-family ${{ inputs.artifact_group }} \
152154
--artifact-id ${{ env.ARTIFACT_RUN_ID }} \
153-
--job ${{ inputs.release_type }}
155+
--job "dev"

0 commit comments

Comments
 (0)