Compare commits

..

20 Commits

Author SHA1 Message Date
Woodpecker CI
68710f91f4 chore: release v0.0.27 [skip ci] 2026-05-04 06:54:28 +00:00
spassignat
fd19361e35 patch: pipeline manual
All checks were successful
ci/woodpecker/push/build-pipeline Pipeline was successful
2026-05-04 08:53:28 +02:00
Woodpecker CI
213d061f0b chore: release v0.0.26 [skip ci] 2026-05-04 06:39:19 +00:00
spassignat
9f43203b94 patch: pipeline manual
Some checks failed
ci/woodpecker/push/build-pipeline Pipeline was successful
ci/woodpecker/deployment/deploy-pipeline Pipeline failed
2026-05-04 08:38:16 +02:00
Woodpecker CI
021c4ed2d3 chore: release v0.0.25 [skip ci] 2026-05-04 06:35:27 +00:00
spassignat
d06877bd7d patch: pipeline manual
Some checks failed
ci/woodpecker/push/build-pipeline Pipeline was successful
ci/woodpecker/deployment/deploy-pipeline Pipeline failed
2026-05-04 08:34:23 +02:00
Woodpecker CI
19625f0c13 chore: release v0.0.24 [skip ci] 2026-05-04 06:31:56 +00:00
spassignat
bcf510b936 patch: pipeline manual
Some checks failed
ci/woodpecker/push/build-pipeline Pipeline was successful
ci/woodpecker/deployment/deploy-pipeline Pipeline failed
2026-05-04 08:30:54 +02:00
Woodpecker CI
f6139782b4 chore: release v0.0.23 [skip ci] 2026-05-04 06:26:11 +00:00
spassignat
c4297c7c25 patch: pipeline manual
Some checks failed
ci/woodpecker/push/build-pipeline Pipeline was successful
ci/woodpecker/deployment/deploy-pipeline Pipeline failed
2026-05-04 08:25:08 +02:00
spassignat
f89ccb0f63 Merge remote-tracking branch 'origin/main' 2026-05-04 08:24:24 +02:00
spassignat
0ba8dd27f0 patch: pipeline manual 2026-05-04 08:24:13 +02:00
Woodpecker CI
b08a3913e7 chore: release v0.0.22 [skip ci] 2026-05-04 06:22:14 +00:00
spassignat
ac4d180382 patch: pipeline manual
All checks were successful
ci/woodpecker/push/build-pipeline Pipeline was successful
2026-05-04 08:21:11 +02:00
spassignat
c5da967d34 Merge remote-tracking branch 'origin/main'
All checks were successful
ci/woodpecker/push/build-pipeline Pipeline was successful
2026-05-04 08:18:12 +02:00
spassignat
e916154e4e patch: pipeline manual 2026-05-04 08:18:02 +02:00
Woodpecker CI
69656f095d chore: release v0.0.21 [skip ci] 2026-05-04 06:16:58 +00:00
spassignat
1cc3d5b5eb patch: pipeline manual
All checks were successful
ci/woodpecker/push/build-pipeline Pipeline was successful
2026-05-04 08:15:57 +02:00
spassignat
228ad14fa9 Merge remote-tracking branch 'origin/main'
All checks were successful
ci/woodpecker/push/build-pipeline Pipeline was successful
2026-05-04 08:10:58 +02:00
spassignat
067acd0521 patch: pipeline manual 2026-05-04 08:10:51 +02:00
17 changed files with 38 additions and 6 deletions

View File

@@ -148,7 +148,16 @@ steps:
git config user.email "woodpecker@exygen.fr"
git config user.name "Woodpecker CI"
git add package.json ./database/src/sql/*.sql 2>/dev/null || true
echo " Save pipeline info"
env
mkdir -p .woodpecker/builds/
echo NEW_VERSION=$NEW_VERSION > .woodpecker/builds/$CI_REPO_ID/$CI_PIPELINE_ID/$CI_PIPELINE_NUMBER
echo NEW_VERSION=$NEW_VERSION > .woodpecker/builds/$CI_PIPELINE_NUMBER
git add .woodpecker/builds/$CI_PIPELINE_NUMBER 2>/dev/null || true
echo " add generated files (sql)"
git add ./database/src/sql/*.sql 2>/dev/null || true
git add package.json 2>/dev/null || true
# Commiter uniquement s'il y a des changements
if ! git diff --cached --quiet; then

1
.woodpecker/builds/100 Normal file
View File

@@ -0,0 +1 @@
NEW_VERSION=0.0.24

1
.woodpecker/builds/102 Normal file
View File

@@ -0,0 +1 @@
NEW_VERSION=0.0.25

1
.woodpecker/builds/104 Normal file
View File

@@ -0,0 +1 @@
NEW_VERSION=0.0.26

1
.woodpecker/builds/106 Normal file
View File

@@ -0,0 +1 @@
NEW_VERSION=0.0.27

1
.woodpecker/builds/95 Normal file
View File

@@ -0,0 +1 @@
0.0.21

1
.woodpecker/builds/97 Normal file
View File

@@ -0,0 +1 @@
NEW_VERSION=0.0.22

1
.woodpecker/builds/98 Normal file
View File

@@ -0,0 +1 @@
NEW_VERSION=0.0.23

View File

@@ -7,9 +7,18 @@ steps:
- name: get-artifact
image: curlimages/curl:latest
commands: |
VERSION=${CI_COMMIT_TAG#v}
curl -o /tmp/${CI_REPO_NAME}-${VERSION}.tar \
"https://nexus.cicd.exygen.fr/repository/domaine-passignat/apps/${CI_REPO_NAME}/${VERSION}/${CI_REPO_NAME}-${VERSION}.tar"
env
echo CI_PIPELINE_PARENT=$CI_PIPELINE_PARENT
echo CI_COMMIT_TAG=$CI_COMMIT_TAG
echo CI_PIPELINE_EVENT=$CI_PIPELINE_EVENT
echo CI_PIPELINE_NUMBER=$CI_PIPELINE_NUMBER
echo CI_PREV_PIPELINE_NUMBER=$CI_PREV_PIPELINE_NUMBER
echo CI_PREV_PIPELINE_PARENT=$CI_PREV_PIPELINE_PARENT
ls -als .woodpecker/builds
source .woodpecker/builds/$CI_PREV_PIPELINE_NUMBER
echo new version: ${NEW_VERSION}
curl -o /tmp/${CI_REPO_NAME}-${NEW_VERSION}.tar \
"https://nexus.cicd.exygen.fr/repository/domaine-passignat/apps/${CI_REPO_NAME}/${NEW_VERSION}/${CI_REPO_NAME}-${VERSION}.tar"
# Étape 7: Transfert vers le serveur distant (SCP)
- name: transfert
@@ -22,7 +31,7 @@ steps:
password:
from_secret: remote_password
port: 22
source: /tmp/${CI_REPO_NAME}-${VERSION}.tar
source: /tmp/${CI_REPO_NAME}-${NEW_VERSION}.tar
target: /tmp/
depends_on: [ get-artifact ]

View File

@@ -0,0 +1 @@
-- none

View File

@@ -0,0 +1 @@
-- none

View File

@@ -0,0 +1 @@
-- none

View File

@@ -0,0 +1 @@
-- none

View File

@@ -0,0 +1 @@
-- none

View File

@@ -0,0 +1 @@
-- none

View File

@@ -0,0 +1 @@
-- none

View File

@@ -1,7 +1,7 @@
{
"name": "cicd",
"private": true,
"version": "0.0.20",
"version": "0.0.27",
"description": "Node.js Rest Apis with Express, Sequelize & PostgreSQL",
"scripts": {
"update:patch": "node scripts/update-version.js -patch",