Build Docker Builder Factory #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker Builder Factory | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- 'builder.Dockerfile' | |
- '**docker-builder.yml' | |
schedule: | |
- cron: '5 4 14 * *' | |
concurrency: | |
group: "build-builder" | |
cancel-in-progress: false | |
jobs: | |
docker-builder: | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'push' || github.event_name == 'schedule' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set outputs | |
id: vars | |
run: | | |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GHCR_USERNAME }} | |
password: ${{ secrets.CR_PAT }} | |
- name: Build and push | |
id: docker_build | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./ | |
file: ./builder.Dockerfile | |
push: true | |
labels: | | |
org.opencontainers.image.title=NWNX:EE Builder Factory | |
org.opencontainers.image.description=This image serves as the factory for compiling the sources, and must be updated whenever the build dependencies change. This docker image created is pushed to Dockerhub and GHCR and is the base image when users build their own docker images for NWNX:EE. | |
org.opencontainers.image.author=NWNX:EE Community | |
org.opencontainers.image.source=https://github.com/${{ github.repository_owner }}/unified | |
org.opencontainers.image.created=${{ steps.vars.outputs.created }} | |
org.opencontainers.image.revision=${{ github.sha }} | |
tags: | | |
${{ github.repository_owner }}/builder:latest | |
${{ github.repository_owner }}/builder:${{ steps.vars.outputs.sha_short }} | |
ghcr.io/${{ github.repository_owner }}/builder:latest | |
ghcr.io/${{ github.repository_owner }}/builder:${{ steps.vars.outputs.sha_short }} | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |