Compare commits

...

10 commits

Author SHA1 Message Date
Jean-Christian Paul Denis
47b2acd39d
Merge pull request #2 from JcDenis/master
update branch
2024-12-07 14:30:14 +01:00
ee60e71cf2
bump sysInfo 9.8 2024-12-07 10:13:14 +01:00
d1168cf533
add option to clean repository 2024-12-07 01:07:56 +01:00
Jean-Christian Paul Denis
4eb32b096e
Merge pull request #1 from JcDenis/2.32.1
add workflow to build from old versions
2024-12-07 00:56:40 +01:00
f0387bef59
ok I'm stupid 2024-12-07 00:40:24 +01:00
03ae071506
maybe another day 2024-12-07 00:38:46 +01:00
0cd6b339f0
one more oops 2024-12-07 00:37:08 +01:00
f4db10a21d
oops 2024-12-07 00:36:22 +01:00
e242b24f79
add workflow to build from old versions 2024-12-07 00:33:07 +01:00
c610081099
oopss 2024-12-07 00:12:41 +01:00
3 changed files with 15 additions and 4 deletions

View file

@ -3,6 +3,17 @@ on:
schedule:
- cron: '45 11 * * 0'
workflow_dispatch:
inputs:
days:
description: 'retain days'
required: true
default: 15
type: choice
options:
- 1
- 2
- 7
- 15
jobs:
del_runs:
@ -16,5 +27,5 @@ jobs:
with:
token: ${{ github.token }}
repository: ${{ github.repository }}
retain_days: 30
retain_days: ${{ github.event.inputs.days }}
keep_minimum_runs: 7

View file

@ -84,13 +84,13 @@ jobs:
- name: notfound
if: (steps.create.outputs.created == 'false')
run: |
SUMMARY=$'Branch ${{ steps.dotclear.outputs.version }} has not been created.'
SUMMARY=$'Branch ${{ needs.check_image.outputs.version }} has not been created.'
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
- name: found
if: (steps.create.outputs.created == 'true')
run: |
SUMMARY=$' Branch ${{ steps.dotclear.outputs.version }} has been created.'
SUMMARY=$' Branch ${{ needs.check_image.outputs.version }} has been created.'
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
do_image:

View file

@ -136,7 +136,7 @@ RUN curl -fsSL -o plugin.zip "https://github.com/JcDenis/dcLog/releases/download
&& rm plugin.zip
# sysInfo
ENV VER_SI=9.7
ENV VER_SI=9.8
RUN curl -fsSL -o plugin.zip "https://github.com/franck-paul/sysInfo/releases/download/$VER_SI/plugin-sysInfo-$VER_SI.zip" \
&& mkdir -p /var/lib/dotclear/plugins/sysInfo \
&& unzip -d /var/lib/dotclear/plugins plugin.zip \