We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f05ca commit d38b4cfCopy full SHA for d38b4cf
2 files changed
.github/actions/common-preflight-check/action.yml
@@ -9,6 +9,16 @@ inputs:
9
runs:
10
using: "composite"
11
steps:
12
+ - name: Set up Docker Buildx
13
+ uses: docker/setup-buildx-action@v3
14
+ with:
15
+ version: "v0.31.1"
16
+
17
+ - name: Set up Docker Compose
18
+ uses: docker/setup-compose-action@v1
19
20
+ version: "v5.0.2"
21
22
- name: Build image
23
shell: bash
24
env:
.github/workflows/pull_request.yml
@@ -20,8 +20,8 @@ jobs:
- name: Login
uses: ./.github/actions/login
with:
- user-name: ${{ secrets.DOCKER_HUB_USERNAME }}
- token: ${{ secrets.DOCKER_HUB_TOKEN }}
+ user-name: ${{ vars.DOCKER_HUB_TEST_USERNAME }}
+ token: ${{ vars.DOCKER_HUB_TEST_TOKEN }}
25
26
- name: Preflight checks
27
uses: ./.github/actions/common-preflight-check
0 commit comments