Skip to content

Commit

Permalink
chore: update upload and download to v4 in deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Nov 15, 2024
1 parent 53a6a3f commit efb3184
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@ jobs:
if: ${{ github.event.inputs.infra_type == 'Payara' && github.event.inputs.basepath != '' }}
run: npm run build -- --base=/${{ github.event.inputs.basepath }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: built-site
path: ./dist
include-hidden-files: true

deploy-to-s3:
needs: build
Expand All @@ -84,7 +85,7 @@ jobs:
python -m pip install --upgrade pip
pip install awscli
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: built-site
path: ./dist
Expand All @@ -111,7 +112,7 @@ jobs:
distribution: 'zulu'
java-version: '11'

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: built-site
path: ./dist
Expand Down

0 comments on commit efb3184

Please sign in to comment.