Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: push to both GHCR and Docker Hub #861

Merged
merged 1 commit into from
Nov 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ on:
jobs:
buildx:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
-
name: Checkout
Expand All @@ -21,6 +24,7 @@ jobs:
id: prepare
run: |
DOCKER_IMAGE=robotastic/trunk-recorder
GHCR_IMAGE=ghcr.io/robotastic/trunk-recorder
DOCKER_PLATFORMS=linux/amd64,linux/arm64,linux/arm/v7
VERSION=edge

Expand All @@ -32,14 +36,18 @@ jobs:
fi

TAGS="--tag ${DOCKER_IMAGE}:${VERSION}"
TAGS="$TAGS --tag ${GHCR_IMAGE}:${VERSION}"
if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest"
TAGS="$TAGS --tag ${GHCR_IMAGE}:latest"
fi
if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest"
TAGS="$TAGS --tag ${GHCR_IMAGE}:latest"
fi

echo ::set-output name=docker_image::${DOCKER_IMAGE}
echo ::set-output name=ghcr_image::${GHCR_IMAGE}
echo ::set-output name=version::${VERSION}
echo ::set-output name=buildx_args::--platform ${DOCKER_PLATFORMS} \
--build-arg VERSION=${VERSION} \
Expand Down Expand Up @@ -71,13 +79,21 @@ jobs:
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args }}
-
name: Docker Login
name: Docker Hub Login
if: success() && github.event_name != 'pull_request'
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: |
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin
-
name: GHCR Login
if: success() && github.event_name != 'pull_request'
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin ghcr.io
-
name: Docker Buildx (push)
if: success() && github.event_name != 'pull_request'
Expand All @@ -90,6 +106,7 @@ jobs:
if: always() && github.event_name != 'pull_request'
run: |
docker run --rm mplatform/mquery ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }}
docker run --rm mplatform/mquery ${{ steps.prepare.outputs.ghcr_image }}:${{ steps.prepare.outputs.version }}
-
name: Clear
if: always() && github.event_name != 'pull_request'
Expand Down