From 43d00111ff1eda97e14a61a82d865d80b3d4e3a2 Mon Sep 17 00:00:00 2001 From: marcelmanzel Date: Tue, 16 Jan 2024 10:23:11 +0100 Subject: [PATCH] Add missing docker logins to workflow --- .github/workflows/development.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index e49c408..3991497 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -110,6 +110,12 @@ jobs: with: path: source/test-module + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USER }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Start containers run: | make up @@ -167,6 +173,12 @@ jobs: installation-${{ github.sha }}-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} installation-${{ github.sha }}-${{ join(inputs.*, '-') }}-${{ github.run_number }} + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USER }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Start containers run: | make up @@ -243,6 +255,12 @@ jobs: installation-${{ github.sha }}-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }} installation-${{ github.sha }}-${{ join(inputs.*, '-') }}-${{ github.run_number }} + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USER }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Start containers run: | make up