Skip to content

Build dae Docker image #13

Build dae Docker image

Build dae Docker image #13

# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
# https://github.com/daeuniverse/dae/blob/main/.github/workflows/docker.yml
name: "Build dae Docker image"
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'dae/docker/**'
- '.github/workflows/dae-docker-build.yml'
schedule:
- cron: '30 22 * * *' # See https://crontab.guru/#0_3_*_*_*
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'y0ngb1n/dockerized'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Fetch dae version
id: get_dae_version
run: |
export TZ='Asia/Shanghai'
echo "build_date=$(date '+%Y-%m-%d-%H-%M-%S')" >> $GITHUB_OUTPUT
local_version=`sed -nr 's/ARG DAE_VERSION="(.*)"/\1/p' dae/docker/Dockerfile`
latest_version=$(curl -sSL -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
https://api.github.com/repos/daeuniverse/dae/releases/latest | jq -r '.tag_name')
if [ "$local_version" != "$latest_version" ]; then
echo "dae_version=$latest_version" >> $GITHUB_OUTPUT
echo "dae_latest_version=$latest_version" >> $GITHUB_ENV
fi
- name: Build and push Docker images to ghcr.io
uses: docker/build-push-action@v4
if: steps.get_dae_version.outputs.dae_version != ''
with:
context: dae
file: ./dae/docker/Dockerfile
builder: ${{ steps.buildx.outputs.name }}
platforms: linux/arm/v7,linux/arm64,linux/amd64,linux/386
build-args: |
DAE_VERSION=${{ steps.get_dae_version.outputs.dae_version }}
push: true
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/dae:${{ steps.get_dae_version.outputs.dae_version }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/dae:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Update dae version
if: steps.get_dae_version.outputs.dae_version != ''
run: |
sed -i 's/DAE_VERSION="[^"]*"/DAE_VERSION="'"$dae_latest_version"'"/g' dae/docker/Dockerfile
sed -i "s|image: .*|image: ghcr.io/y0ngb1n/dockerized/dae:$dae_latest_version|g" dae/docker-compose.yaml
- name: Commit changes
if: steps.get_dae_version.outputs.dae_version != ''
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add -A
arr[0]="πŸ˜‚"
arr[1]="😱"
arr[2]="πŸ‘Ώ"
arr[3]="πŸ’©"
arr[4]="πŸ™"
arr[5]="πŸ™ˆ"
arr[6]="🐐"
arr[7]="πŸ€–"
arr[8]="πŸͺΏ"
arr[9]="πŸ‘»"
rand=$[$RANDOM % ${#arr[@]}]
git commit -m "chore(bot): ${arr[$rand]} update dae version to ${{ steps.get_dae_version.outputs.dae_version }}"
- name: Push changes
uses: ad-m/github-push-action@master
# uses: actions-js/push@master
if: steps.get_dae_version.outputs.dae_version != ''
with:
directory: "dae"
github_token: ${{ secrets.GITHUB_TOKEN }}