Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
piRGoif committed Aug 14, 2024
2 parents d0b49de + 962c32a commit 494392e
Showing 6 changed files with 198 additions and 107 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ on:
name: 🚀 Deploy site
jobs:
web-deploy-test:
if: github.ref != 'refs/heads/master'
if: startsWith(github.ref, 'refs/heads/') && github.ref != 'refs/heads/master'
name: 🎉 Deploy TEST
runs-on: ubuntu-latest
steps:
@@ -19,7 +19,7 @@ jobs:
dry-run: true
log-level: standard
web-deploy-prod:
if: github.ref == 'refs/heads/master'
if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/master'
name: 🎉 Deploy PROD
runs-on: ubuntu-latest
steps:
3 changes: 1 addition & 2 deletions communs/dates-maj-footer.inc.php
Original file line number Diff line number Diff line change
@@ -4,6 +4,5 @@
</p>

<p id="disclaimer">
Un oubli, une erreur, une suggestion ? N'hésitez pas à me contacter sur
pgoiffon -at- free.fr
Un oubli, une erreur, une suggestion ? Rendez-vous sur <a href="https://github.com/piRGoif/GEPApiR">le dépôt GitHub</a> !
</p>
2 changes: 1 addition & 1 deletion communs/gepapir.css
Original file line number Diff line number Diff line change
@@ -210,7 +210,7 @@ label:hover
******************/
hr.sep, hr.sepfin
{
clear: left;
clear: both;
margin: 4ex auto;
width: 630px;
border-style: none;
Binary file modified communs/gepapir.csz
Binary file not shown.
7 changes: 6 additions & 1 deletion index.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php ob_start('ob_gzhandler');
$pageVersion = "v8.0.1";
$pageVersion = "v8.1.0";

// NAVIGATION
$RelBasePath = "";
@@ -140,6 +140,11 @@
****/
?>

<dt>14/08/2024, v8.1.0</dt>
<dd>
- <a href="zicmue/">Musiques</a> : mise à jour complète du contenu
</dd>

<dt>13/08/2024, v8.0.0</dt>
<dd>
- Publication avec la GitHub action <a href="https://github.com/marketplace/actions/ftp-deploy">"FTP Deploy"</a><br>
Loading

0 comments on commit 494392e

Please sign in to comment.