From 20e0688b8783987dd1b6d97d795edbebaecb4a2d Mon Sep 17 00:00:00 2001 From: Catarina Paralta <46568597+paralta@users.noreply.github.com> Date: Tue, 27 Feb 2024 14:48:36 +0000 Subject: [PATCH] feat: tmp upload artifacts to s3 and blob storage --- .github/workflows/post-release.yaml | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/.github/workflows/post-release.yaml b/.github/workflows/post-release.yaml index 537bf6452d..ec22cef88e 100644 --- a/.github/workflows/post-release.yaml +++ b/.github/workflows/post-release.yaml @@ -45,4 +45,31 @@ jobs: - name: Create tags # TODO: SSH Key required for signing - run: make multimod-push-tags \ No newline at end of file + run: make multimod-push-tags + + # upload: + # runs-on: ubuntu-latest + # steps: + # - name: Checkout + # uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + + # - name: Download artifacts + # uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2 + # with: + # name: artifacts + # path: dist + + # # TODO unzip the cloudformation file + # - uses: shallwefootball/s3-upload-action@master + # name: Upload Cloudformation file to S3 + # with: + # aws_key_id: ${{ secrets.AWS_KEY_ID }} + # aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY}} + # aws_bucket: ${{ secrets.AWS_BUCKET }} + # source_dir: 'dist/aws-cloudformation-v0.6.0.tar.gz' + + # - uses: bacongobbler/azure-blob-storage-upload@main + # name: Upload TemplateSpecs to Azure Blob Storage + # with: + # source_dir: 'dist/vmclarity-UI.json' + # container_name: \ No newline at end of file