fix: update version download/upload artifacts in cicd (#2656)

This commit is contained in:
Alex Varchuk 2025-02-07 12:27:21 +01:00 committed by GitHub
parent 3a748022be
commit 6fa5a2a57a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,7 @@ jobs:
- run: npm ci - run: npm ci
- run: npm run bundle - run: npm run bundle
- name: Store bundle artifact - name: Store bundle artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: bundles name: bundles
path: bundles path: bundles
@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: npm ci - run: npm ci
- name: Download bundled artifact - name: Download bundled artifact
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: bundles name: bundles
path: bundles path: bundles
@ -73,7 +73,7 @@ jobs:
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Download bundled artifacts - name: Download bundled artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
name: bundles name: bundles
path: bundles path: bundles
@ -107,7 +107,7 @@ jobs:
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1 aws-region: us-east-1
- name: Download all artifact - name: Download all artifact
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
- name: Publish to S3 - name: Publish to S3
run: npm run publish-cdn run: npm run publish-cdn