mirror of
https://git.yrzr.tk/docker/gitlab-ce-arm64.git
synced 2024-11-22 17:48:12 +08:00
60 lines
2.3 KiB
YAML
60 lines
2.3 KiB
YAML
name: buildx
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
- name: Login to container registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
- name: Set variables
|
|
shell: bash
|
|
run: |
|
|
echo "GITLAB_DIR=omnibus-gitlab" >> $GITHUB_ENV
|
|
echo "DOCKER_DIR=omnibus-gitlab/docker" >> $GITHUB_ENV
|
|
echo "GITLAB_REF_TAG=$(echo ${{ github.ref_name }} | sed 's/\-/\+/')" >> $GITHUB_ENV
|
|
DOCKER_NAMESPACE=yrzr/gitlab-ce-arm64v8
|
|
LATEST=$(git tag | sort -rV | head -n 1)
|
|
if [ "${LATEST}" == "${{ github.ref_name }}" ]; then
|
|
echo "DOCKER_IMAGE_TAGS=${DOCKER_NAMESPACE}:$THIS_TAG,${DOCKER_NAMESPACE}:latest">> $GITHUB_ENV
|
|
else
|
|
echo "DOCKER_IMAGE_TAGS=${DOCKER_NAMESPACE}:$THIS_TAG">> $GITHUB_ENV
|
|
fi
|
|
- name: Check out https://github.com/gitlabhq/omnibus-gitlab.git
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: gitlabhq/omnibus-gitlab
|
|
path: ${{ env.GITLAB_DIR }}
|
|
ref: ${{ env.GITLAB_REF_TAG }}
|
|
- name: Perpare for building
|
|
shell: bash
|
|
run: |
|
|
echo "PACKAGECLOUD_REPO=gitlab-ce" > ./${{ env.DOCKER_DIR }}/RELEASE
|
|
echo "RELEASE_PACKAGE=gitlab-ce" >> ./${{ env.DOCKER_DIR }}/RELEASE
|
|
echo "RELEASE_VERSION=${{ github.ref_name }}" >> ./${{ env.DOCKER_DIR }}/RELEASE
|
|
echo "DOWNLOAD_URL=https://packages.gitlab.com/gitlab/gitlab-ce/packages/ubuntu/focal/gitlab-ce_${{ github.ref_name }}_arm64.deb/download.deb" >> ./${{ env.DOCKER_DIR }}/RELEASE
|
|
cat ./${{ env.DOCKER_DIR }}/RELEASE
|
|
sed -i 's/\-recommends/\-recommends libatomic1/' ./${{ env.DOCKER_DIR }}/Dockerfile
|
|
- name: Build and Push Image
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: ${{ env.DOCKER_DIR }}
|
|
platforms: linux/arm64
|
|
push: true
|
|
tags: ${{ env.DOCKER_IMAGE_TAGS }}
|