refactor: swap Docker Hub steps with GHCR steps
Aligns with the ordering elsewhere. PR: #32
This commit is contained in:
parent
5e0400cd2f
commit
bb5f036706
22
.github/workflows/containers.yml
vendored
22
.github/workflows/containers.yml
vendored
@ -24,6 +24,17 @@ jobs:
|
|||||||
- dev
|
- dev
|
||||||
- build
|
- build
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check for Docker Hub credentials (secrets)
|
||||||
|
id: docker-hub-credentials
|
||||||
|
run: if [ ${{ secrets.DOCKER_HUB_USERNAME == null || secrets.DOCKER_HUB_TOKEN == null }} = true ]; then exit 1; fi
|
||||||
|
continue-on-error: true
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
id: docker-hub-login
|
||||||
|
if: ${{ steps.docker-hub-credentials.outcome == 'success' }}
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||||
- name: Check for GitHub Container Registry credentials (secrets)
|
- name: Check for GitHub Container Registry credentials (secrets)
|
||||||
id: ghcr-credentials
|
id: ghcr-credentials
|
||||||
run: if [ ${{ secrets.GHCR_USERNAME == null || secrets.GHCR_TOKEN == null }} = true ]; then exit 1; fi
|
run: if [ ${{ secrets.GHCR_USERNAME == null || secrets.GHCR_TOKEN == null }} = true ]; then exit 1; fi
|
||||||
@ -36,17 +47,6 @@ jobs:
|
|||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ secrets.GHCR_USERNAME }}
|
username: ${{ secrets.GHCR_USERNAME }}
|
||||||
password: ${{ secrets.GHCR_TOKEN }}
|
password: ${{ secrets.GHCR_TOKEN }}
|
||||||
- name: Check for Docker Hub credentials (secrets)
|
|
||||||
id: docker-hub-credentials
|
|
||||||
run: if [ ${{ secrets.DOCKER_HUB_USERNAME == null || secrets.DOCKER_HUB_TOKEN == null }} = true ]; then exit 1; fi
|
|
||||||
continue-on-error: true
|
|
||||||
- name: Login to Docker Hub
|
|
||||||
id: docker-hub-login
|
|
||||||
if: ${{ steps.docker-hub-credentials.outcome == 'success' }}
|
|
||||||
uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
|
||||||
- name: Prepare variables
|
- name: Prepare variables
|
||||||
id: vars
|
id: vars
|
||||||
env:
|
env:
|
||||||
|
Loading…
Reference in New Issue
Block a user