Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vcai122 committed Sep 30, 2024
1 parent 5fe7741 commit f7a1274
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache
tags: pennlabs/penn-mobile-backend:latest,pennlabs/penn-mobile-backend:${{ github.sha }}
outputs: type=docker,dest=/tmp/image.tar
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: build-backend
path: /tmp/image.tar
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
cache-to: type=local,dest=/tmp/.buildx-cache
tags: pennlabs/penn-mobile-frontend:latest,pennlabs/penn-mobile-frontend:${{ github.sha }}
outputs: type=docker,dest=/tmp/image.tar
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: build-frontend
path: /tmp/image.tar
Expand All @@ -86,8 +86,8 @@ jobs:
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: geekyeggo/delete-artifact@v1
- uses: actions/download-artifact@v4
- uses: geekyeggo/delete-artifact@v5
with:
name: |-
build-backend
Expand Down Expand Up @@ -121,4 +121,4 @@ jobs:
GH_AWS_SECRET_ACCESS_KEY: ${{ secrets.GH_AWS_SECRET_ACCESS_KEY }}

needs:
- publish
- publish

0 comments on commit f7a1274

Please sign in to comment.