File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,26 @@ jobs:
3939 api-integration-tests :
4040 runs-on : ubuntu-latest
4141 steps :
42- - uses : actions/checkout@v4
42+ - name : " Setup: checkout repository"
43+ uses : actions/checkout@v4
4344
44- - name : " Login to GitHub Container Registry"
45+ - name : " Setup: Login to GitHub Container Registry"
4546 uses : docker/login-action@v3
4647 with :
4748 registry : ${{ env.IMAGE_REGISTRY }}
4849 username : ${{ github.actor }}
4950 password : ${{ secrets.GITHUB_TOKEN }}
5051
52+ - name : " Setup: Docker Buildx"
53+ uses : docker/setup-buildx-action@v3
54+
55+ - name : " Setup: Build API image"
56+ uses : docker/build-push-action@v6
57+ with :
58+ context : ./api
59+ target : development
60+ tags : ${{ env.API_IMAGE }}
61+
5162 - name : Build API image
5263 run : |
5364 docker pull $API_IMAGE
You can’t perform that action at this time.
0 commit comments