4 Commits

Author SHA1 Message Date
a2c388adf9 Embed resources into presentation
All checks were successful
Build an image to deploy website / build (push) Successful in 1m21s
2024-11-06 14:37:53 +01:00
9530b07eef release 1.2.1
All checks were successful
Build an image to deploy website / build (push) Successful in 1m11s
2024-11-06 12:37:35 +01:00
5ea5f985c9 Use nginx instead of caddy 2024-11-06 12:37:04 +01:00
fb7773e195 release 1.1.0
All checks were successful
Build an image to deploy website / build (push) Successful in 1m5s
2024-11-06 12:00:01 +01:00
10 changed files with 33 additions and 9 deletions

View File

@@ -1,3 +0,0 @@
## 1.1.0-beta0 - 2024-11-05
### Added
* add formation signature électornique

3
.changes/1.2.0.md Normal file
View File

@@ -0,0 +1,3 @@
## 1.2.0 - 2024-11-06
### Added
* Ajout formation signature électronique

3
.changes/1.2.1.md Normal file
View File

@@ -0,0 +1,3 @@
## 1.2.1 - 2024-11-06
### Fixed
* Use nginx instead of caddy

3
.changes/1.2.2-rc1.md Normal file
View File

@@ -0,0 +1,3 @@
## 1.2.2-rc1 - 2024-11-06
### Fixed
* Embed resources into presentation formation signature

View File

@@ -1,3 +0,0 @@
kind: Added
body: Ajout formation signature électronique
time: 2024-11-05T21:47:19.777481719+01:00

View File

@@ -0,0 +1,3 @@
kind: Fixed
body: Embed resources into presentation formation signature
time: 2024-11-06T14:36:47.597001706+01:00

View File

@@ -34,7 +34,7 @@ jobs:
run: pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/essaimage.md -o presentation/src/essaimage.html
- name: Build presentation formation-signature
run: pandoc --from markdown+emoji -t revealjs --resource-path=.:presentation/src/ -s presentation/src/formation-signature.md -o presentation/src/formation-signature.html
run: pandoc --from markdown+emoji -t revealjs --embed-resources --resource-path=.:presentation/src/ -s presentation/src/formation-signature.md -o presentation/src/formation-signature.html
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3

3
.vscode/tasks.json vendored
View File

@@ -13,6 +13,9 @@
"--to",
"revealjs",
"--standalone",
"--embed-resources",
"--resource-path",
"./presentation/src/",
"-o",
"presentation/src/formation-signature.html",
"presentation/src/formation-signature.md"

View File

@@ -6,6 +6,18 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
## 1.2.2-rc1 - 2024-11-06
### Fixed
* Embed resources into presentation formation signature
## 1.2.1 - 2024-11-06
### Fixed
* Use nginx instead of caddy
## 1.2.0 - 2024-11-06
### Added
* Ajout formation signature électronique
## 1.0.0 - 2024-09-30
### Added
* first release with changie

View File

@@ -1,3 +1,6 @@
FROM caddy:2-alpine
FROM nginx:1-alpine
ADD src/ /usr/share/caddy/
COPY src /usr/share/nginx/html
RUN sed -i 's/worker_processes auto/worker_processes 1/' /etc/nginx/nginx.conf
RUN sed -i 's/worker_processes auto/worker_processes 1/' /etc/nginx/nginx.conf