refactor: split docker
job into candidates
and releases
This design approach has improved separation of concerns with minimal repetition. It's also easier to refactor. PR: #41
This commit is contained in:
parent
5b98c4d20c
commit
2f991a1709
48
.github/workflows/containers.yml
vendored
48
.github/workflows/containers.yml
vendored
@ -78,12 +78,13 @@ jobs:
|
|||||||
echo ::set-output name=major-minor::${MAJOR_MINOR}
|
echo ::set-output name=major-minor::${MAJOR_MINOR}
|
||||||
echo ::set-output name=latest::${LATEST}
|
echo ::set-output name=latest::${LATEST}
|
||||||
echo ::set-output name=release-trigger::${RELEASE_TRIGGER}
|
echo ::set-output name=release-trigger::${RELEASE_TRIGGER}
|
||||||
docker:
|
candidates:
|
||||||
needs:
|
needs:
|
||||||
- namespaces
|
- namespaces
|
||||||
- credentials
|
- credentials
|
||||||
- architectures
|
- architectures
|
||||||
- tags
|
- tags
|
||||||
|
if: ${{ !startsWith(github.ref, 'refs/tags') }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
max-parallel: 1 # takes advantage of caching between jobs
|
max-parallel: 1 # takes advantage of caching between jobs
|
||||||
@ -112,14 +113,11 @@ jobs:
|
|||||||
id: repository
|
id: repository
|
||||||
run: echo ::set-output name=name::zmk-${{ matrix.target }}-${{ matrix.architecture }}
|
run: echo ::set-output name=name::zmk-${{ matrix.target }}-${{ matrix.architecture }}
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags') }}
|
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags') }}
|
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
- name: Build and push (candidate)
|
- name: Build and push (candidate)
|
||||||
id: build-push
|
id: build-push
|
||||||
if: ${{ !startsWith(github.ref, 'refs/tags') }}
|
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
with:
|
with:
|
||||||
target: ${{ matrix.target }}
|
target: ${{ matrix.target }}
|
||||||
@ -135,17 +133,39 @@ jobs:
|
|||||||
cache-from: type=registry,ref=docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ env.cache-repository-name }}:dev
|
cache-from: type=registry,ref=docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ env.cache-repository-name }}:dev
|
||||||
cache-to: ${{ (steps.docker-hub-login.outcome == 'success') && (matrix.target == 'dev') && format('type=registry,ref=docker.io/{0}/{1}:{2},mode=max', needs.namespaces.outputs.docker-hub, env.cache-repository-name, 'dev') || null }}
|
cache-to: ${{ (steps.docker-hub-login.outcome == 'success') && (matrix.target == 'dev') && format('type=registry,ref=docker.io/{0}/{1}:{2},mode=max', needs.namespaces.outputs.docker-hub, env.cache-repository-name, 'dev') || null }}
|
||||||
push: ${{ steps.docker-hub-login.outcome == 'success' }}
|
push: ${{ steps.docker-hub-login.outcome == 'success' }}
|
||||||
|
releases:
|
||||||
|
needs:
|
||||||
|
- namespaces
|
||||||
|
- credentials
|
||||||
|
- architectures
|
||||||
|
- tags
|
||||||
|
if: ${{ github.ref == format('refs/tags/{0}', needs.tags.outputs.release-trigger) }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
architecture: ${{ fromJSON(needs.architectures.outputs.json) }}
|
||||||
|
target:
|
||||||
|
- build
|
||||||
|
- dev
|
||||||
|
steps:
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
id: ghcr-login
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ secrets.GHCR_USERNAME }}
|
||||||
|
password: ${{ secrets.GHCR_TOKEN }}
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
id: docker-hub-login
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_HUB_TOKEN }}
|
||||||
|
- name: Repository name
|
||||||
|
id: repository
|
||||||
|
run: echo ::set-output name=name::zmk-${{ matrix.target }}-${{ matrix.architecture }}
|
||||||
- name: Release (pull candidate, tag, push)
|
- name: Release (pull candidate, tag, push)
|
||||||
if: ${{ github.ref == format('refs/tags/{0}', needs.tags.outputs.release-trigger) }}
|
|
||||||
run: |
|
run: |
|
||||||
if [ "${{ steps.docker-hub-login.outcome }}" != "success" ]; then
|
|
||||||
echo "Docker Hub must be authenticated to perform a release!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
if [ "${{ steps.ghcr-login.outcome }}" != "success" ]; then
|
|
||||||
echo "GitHub Container Registry must be authenticated to perform a release!"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
docker pull docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.candidate }}
|
docker pull docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.candidate }}
|
||||||
docker tag docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.candidate }} docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.versions }}
|
docker tag docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.candidate }} docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.versions }}
|
||||||
docker tag docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.candidate }} docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.latest }}
|
docker tag docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.candidate }} docker.io/${{ needs.namespaces.outputs.docker-hub }}/${{ steps.repository.outputs.name }}:${{ needs.tags.outputs.latest }}
|
||||||
@ -161,7 +181,7 @@ jobs:
|
|||||||
git-tag:
|
git-tag:
|
||||||
needs:
|
needs:
|
||||||
- tags
|
- tags
|
||||||
- docker
|
- releases
|
||||||
if: ${{ startsWith(github.ref, 'refs/tags') }}
|
if: ${{ startsWith(github.ref, 'refs/tags') }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
Reference in New Issue
Block a user