mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-02-24 21:40:01 +08:00
114 lines
3.7 KiB
YAML
114 lines
3.7 KiB
YAML
name: Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- '**/*.yml'
|
|
- '.gitignore'
|
|
- '.dockerignore'
|
|
- '.github/**'
|
|
- '.github/workflows/**'
|
|
|
|
concurrency:
|
|
group: build
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Check
|
|
uses: ./.github/workflows/check.yml
|
|
build:
|
|
name: Build
|
|
needs: shellcheck
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
-
|
|
name: Login into Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: Build Docker image
|
|
id: build
|
|
run: |
|
|
#!/bin/bash
|
|
|
|
DIRECTORY="."
|
|
PLATFORMS="linux/amd64,linux/arm64"
|
|
VERSION="${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
|
echo "version=${VERSION}" >> $GITHUB_OUTPUT
|
|
BUILD_DATE="$(date -u +'%Y-%m-%dT%H:%M:%SZ')"
|
|
TITLE="$(grep --only-matching --perl-regex "(?<=image.title\=).*" $DIRECTORY/Dockerfile | sed -e 's/ /\xc2\xa0/g')"
|
|
DESC="$(grep --only-matching --perl-regex "(?<=image.description\=).*" $DIRECTORY/Dockerfile | sed -e 's/ /\xc2\xa0/g')"
|
|
|
|
TAGS=()
|
|
TAGS=("${{ github.repository }}:latest")
|
|
TAGS+=("${{ github.repository }}:${VERSION}")
|
|
TAGS+=("ghcr.io/${{ github.repository }}:latest")
|
|
TAGS+=("ghcr.io/${{ github.repository }}:${VERSION}")
|
|
|
|
LABELS=()
|
|
LABELS=("org.opencontainers.image.licenses=MIT")
|
|
LABELS+=("org.opencontainers.image.title=${TITLE}")
|
|
LABELS+=("org.opencontainers.image.description=${DESC}")
|
|
LABELS+=("org.opencontainers.image.version=${VERSION}")
|
|
LABELS+=("org.opencontainers.image.created=${BUILD_DATE}")
|
|
LABELS+=("org.opencontainers.image.revision=${GITHUB_RUN_ID}")
|
|
LABELS+=("org.opencontainers.image.url=https://hub.docker.com/r/${{ github.repository }}")
|
|
LABELS+=("org.opencontainers.image.source=https://github.com/${{ github.repository }}")
|
|
|
|
docker buildx build --progress=plain \
|
|
--platform "${PLATFORMS}" \
|
|
--output "type=image,push=true" \
|
|
--build-arg "VERSION_ARG=${VERSION}" \
|
|
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
|
|
$(printf '%s' "${LABELS[@]/#/ --label }" ) \
|
|
$(printf '%s' "${LABELS[@]/#/ --annotation }" ) \
|
|
$(printf '%s' "${TAGS[@]/#/ --tag }" ) "${DIRECTORY}"
|
|
|
|
rm -f ${HOME}/.docker/config.json
|
|
-
|
|
name: Create a release
|
|
uses: action-pack/github-release@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
with:
|
|
tag: "v${{ steps.build.outputs.version }}"
|
|
title: "v${{ steps.build.outputs.version }}"
|
|
-
|
|
name: Increment version variable
|
|
uses: action-pack/bump@v2
|
|
with:
|
|
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
-
|
|
name: Push to Gitlab mirror
|
|
uses: action-pack/gitlab-sync@v3
|
|
with:
|
|
url: ${{ secrets.GITLAB_URL }}
|
|
token: ${{ secrets.GITLAB_TOKEN }}
|
|
username: ${{ secrets.GITLAB_USERNAME }}
|