Skip to content

Commit

Permalink
chore: add upload to GCS step in ironbank (#9471)
Browse files Browse the repository at this point in the history
* add upload to GCS step in ironbank

* update workflow name
  • Loading branch information
dbumblis-parabol committed Feb 28, 2024
1 parent 9441b27 commit 7bfec91
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ironbank.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ironbank S3 Upload
name: Ironbank Image Upload

on:
workflow_dispatch:
Expand Down Expand Up @@ -64,3 +64,11 @@ jobs:
- name: Upload to S3
run: |
aws s3 cp ${{ github.event.inputs.version_number }}.zip s3://ironbank-proving-ground-action-files.parabol.co/${{ github.event.inputs.version_number }}.zip
- name: Upload to GCS
uses: actions-hub/gcloud@master
env:
CLOUDSDK_AUTH_ACCESS_TOKEN: "${{ steps.auth.outputs.access_token }}"
with:
args: storage cp ${{ github.event.inputs.version_number }}.zip gs://ironbank-proving-ground/${{ github.event.inputs.version_number }}.zip
cli: gcloud

0 comments on commit 7bfec91

Please sign in to comment.