build(deps): bump actions/upload-artifact from 4.4.3 to 4.5.0 #122
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build dApp | |
on: pull_request | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
build_test: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2 | |
- name: Build | |
id: build-image | |
env: | |
IMAGE_TAG: ${{ github.sha }} | |
PROFILE: testnet.local | |
run: | | |
# Build a docker container and | |
# push it to ECR so that it can | |
# be deployed to ECS. | |
docker build --build-arg PROFILE="$PROFILE" --build-arg NEXT_PUBLIC_BUILD_ID=${{ github.sha }} --no-cache . |