140 lines
4.6 KiB
YAML
140 lines
4.6 KiB
YAML
name: Build and push stable image
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '15 10 * * *'
|
|
workflow_dispatch:
|
|
inputs:
|
|
rebuild:
|
|
description: 'rebuild'
|
|
type: boolean
|
|
required: true
|
|
|
|
env:
|
|
DOTCLEAR_IMAGE: docker-dotclear
|
|
DOTCLEAR_CANAL: stable
|
|
DOTCLEAR_URL: https://download.dotclear.org/versions.xml
|
|
DOCKER_NAMESPACE: jcpd
|
|
|
|
jobs:
|
|
check_release:
|
|
name: Check and compare official Dotclear version
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
outputs:
|
|
version: ${{ steps.dotclear.outputs.version }}
|
|
exists: ${{ steps.repository.outputs.exists }}
|
|
steps:
|
|
- name: Download and parse last version
|
|
id: dotclear
|
|
run: |
|
|
curl -sSL https://bit.ly/install-xq | sudo bash
|
|
curl -fsSL -o versions.xml ${{ env.DOTCLEAR_URL }}
|
|
echo version=$(cat versions.xml | xq -x "//release[@name='${{ env.DOTCLEAR_CANAL }}']/@version") >> $GITHUB_OUTPUT
|
|
|
|
- name: Check repository releases
|
|
id: repository
|
|
uses: mukunku/tag-exists-action@v1.6.0
|
|
with:
|
|
tag: ${{ steps.dotclear.outputs.version }}
|
|
|
|
- name: notfound
|
|
if: (steps.repository.outputs.exists == 'false')
|
|
run: |
|
|
SUMMARY=$'Repository tag ${{ steps.dotclear.outputs.version }} not found.\nLaunching next job.'
|
|
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
|
|
|
- name: found
|
|
if: (steps.repository.outputs.exists == 'false')
|
|
run: |
|
|
SUMMARY=$'Repository tag ${{ steps.dotclear.outputs.version }} found.\nStopping workflow.'
|
|
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
|
|
|
do_release:
|
|
needs: check_release
|
|
if: (needs.check_release.outputs.exists == 'false')
|
|
name: Create repository release according to Dotclear version
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Create repository release
|
|
id: create_release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
name: ${{ needs.check_release.outputs.version }}
|
|
tag_name: ${{ needs.check_release.outputs.version }}
|
|
body: Source for docker image of Dotclear ${{ needs.check_release.outputs.version }} stable
|
|
draft: false
|
|
prerelease: false
|
|
|
|
- name: summary
|
|
run: |
|
|
SUMMARY=$'Release ${{ steps.dotclear.outputs.version }} created.'
|
|
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
|
|
|
do_image:
|
|
needs: check_release
|
|
if: ((needs.check_release.outputs.exists == 'false') || (github.event.inputs.rebuild == 'true'))
|
|
name: Build and push latest and versionned images
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
attestations: write
|
|
id-token: write
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- 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_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Log in to Github registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: set lower case github repository
|
|
run: |
|
|
echo "GITHUB_REPOSITORY=${REPO,,}" >>${GITHUB_ENV}
|
|
env:
|
|
REPO: '${{ github.repository }}'
|
|
|
|
- name: Build and push images
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
sbom: true
|
|
push: true
|
|
tags: |
|
|
${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ needs.check_release.outputs.version }}
|
|
${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:latest
|
|
ghcr.io/${{ env.GITHUB_REPOSITORY }}:${{ needs.check_release.outputs.version }}
|
|
ghcr.io/${{ env.GITHUB_REPOSITORY }}:latest
|
|
build-args: CANAL=${{ env.DOTCLEAR_CANAL }}
|
|
platforms: linux/386,linux/amd64,linux/arm64,linux/arm/V7
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
|
|
- name: Send Telegram Message Ok
|
|
uses: appleboy/telegram-action@master
|
|
env:
|
|
GITHUB_CONTEXT: ${{toJSON(github)}}
|
|
with:
|
|
to: ${{ secrets.TELEGRAM_ID }}
|
|
token: ${{ secrets.TELEGRAM_TOKEN }}
|
|
format: markdown
|
|
message: Images __${{ env.DOTCLEAR_IMAGE }}:latest__ and __${{ env.DOTCLEAR_IMAGE }}:${{ needs.check_release.outputs.version }}__ successfully generated.
|