We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb1bb5 commit ee0e176Copy full SHA for ee0e176
.github/workflows/tests.yaml
@@ -39,15 +39,26 @@ jobs:
39
api-integration-tests:
40
runs-on: ubuntu-latest
41
steps:
42
- - uses: actions/checkout@v4
+ - name: "Setup: checkout repository"
43
+ uses: actions/checkout@v4
44
- - name: "Login to GitHub Container Registry"
45
+ - name: "Setup: Login to GitHub Container Registry"
46
uses: docker/login-action@v3
47
with:
48
registry: ${{ env.IMAGE_REGISTRY }}
49
username: ${{ github.actor }}
50
password: ${{ secrets.GITHUB_TOKEN }}
51
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
62
- name: Build API image
63
run: |
64
docker pull $API_IMAGE
0 commit comments