set Docker CI of OS Image #2
Workflow file for this run
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: Docker CI of OS Image | |
on: | |
push: | |
tags: | |
- 'debian-*' | |
- 'ubuntu-*' | |
- 'kali-*' | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_NAME: docker-images | |
steps: | |
- name: Set Docker Image Name and Tag | |
id: system | |
run: | | |
TAG=${GITHUB_REF#refs/tags/} | |
IFS=- read -r IMAGE VERSION <<< $TAG | |
echo "image=$IMAGE" >> $GITHUB_OUTPUT | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- name: Build and Push Image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./os/ | |
file: ./os/Dockerfile | |
platforms: | | |
linux/amd64 | |
linux/arm64 | |
push: true | |
build-args: | | |
SYSTEM_IMAGE=${{ steps.system.outputs.image }} | |
SYSTEM_VERSION=${{ steps.system.outputs.version }} | |
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ env.IMAGE_NAME }}:${{ steps.system.outputs.image }}-${{ steps.system.outputs.version }} | |
- name: Update repo description | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
repository: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ env.IMAGE_NAME }} | |
short-description: ${{ github.event.repository.description }} | |
- name: Push Summary | |
run: echo "### Build ${{ steps.system.outputs.image }}-${{ steps.system.outputs.version }} Successfully :rocket:" >> $GITHUB_STEP_SUMMARY |