39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
# This file is generated automatically when running './update.sh'
|
|
# Please do not edit it directly!
|
|
# Instead perform any modifications in .gitea/build.yml.template
|
|
|
|
name: build
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
on:
|
|
# can run job manually
|
|
workflow_dispatch:
|
|
# Run once a week
|
|
schedule:
|
|
- cron: '0 0 * * 6'
|
|
|
|
jobs:
|
|
build-docker-images:
|
|
strategy:
|
|
matrix:
|
|
dolibarr_version: [ %DOLIBARR_VERSIONS% ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: docker/login-action@v3
|
|
with:
|
|
registry: https://${{ secrets.DOCKER_REGISTRY_HOST }}
|
|
username: ${{ secrets.DOCKER_REGISTRY_USER }}
|
|
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
|
|
- uses: docker/setup-qemu-action@v3
|
|
- uses: docker/setup-buildx-action@v3
|
|
- env:
|
|
DOCKER_BUILD: 1
|
|
DOCKER_PUSH: 1
|
|
DOCKER_NAMESPACE: "wavyzz"
|
|
DOCKER_REGISTRY_HOST: registry.wavyzz.com
|
|
run: |
|
|
./update.sh ${{ matrix.dolibarr_version }}
|
|
|