From 26f007fee54f2f0c00e77242360b5f6b7802bee8 Mon Sep 17 00:00:00 2001 From: forgejo-actions Date: Thu, 26 Jun 2025 12:12:42 +0000 Subject: [PATCH 1/6] Start next development cycle 1.0.7-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 87f0b1b..4b97bc4 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.oguerreiro.resilient resilient - 1.0.6-SNAPSHOT + 1.0.7-SNAPSHOT jar Resilient Description for Resilient From ed76ddb28d379e7f9d2735fa26750f05d62ebc43 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 26 Jun 2025 13:23:38 +0100 Subject: [PATCH 2/6] Update .forgejo/workflows/release.yml --- .forgejo/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index bcd8635..911def0 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -214,7 +214,7 @@ jobs: REPO="root/resilient" # Create release - RESPONSE=$(curl -s -X POST "$API/repos/$REPO/releases" \ + RESPONSE=$(curl -X POST "$API/repos/$REPO/releases" \ -H "Authorization: token ${{ secrets.FORGEJO_TOKEN }}" \ -H "Content-Type: application/json" \ -d "{ @@ -228,7 +228,7 @@ jobs: echo "Created release ID: $RELEASE_ID" # Upload artifact - curl -s -X POST "$API/repos/$REPO/releases/$RELEASE_ID/assets?name=resilient.jar" \ + curl -X POST "$API/repos/$REPO/releases/$RELEASE_ID/assets?name=resilient.jar" \ -H "Authorization: token ${{ secrets.FORGEJO_TOKEN }}" \ -H "Content-Type: application/java-archive" \ --data-binary @"target/resilient*.jar" From cd7aa81a8a425ed221e933e031079f2f84a8ed77 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 26 Jun 2025 16:15:21 +0100 Subject: [PATCH 3/6] Update .forgejo/workflows/release.yml --- .forgejo/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 911def0..a02c17e 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -228,10 +228,12 @@ jobs: echo "Created release ID: $RELEASE_ID" # Upload artifact + JAR_FILE=$(ls target/resilient*.jar | head -n 1) + echo "Attaching file : $JAR_FILE" curl -X POST "$API/repos/$REPO/releases/$RELEASE_ID/assets?name=resilient.jar" \ -H "Authorization: token ${{ secrets.FORGEJO_TOKEN }}" \ -H "Content-Type: application/java-archive" \ - --data-binary @"target/resilient*.jar" + --data-binary @"$JAR_FILE" # ################################################################## From 6cfcec516897c71a9c6fea3e19faee8cb69946f0 Mon Sep 17 00:00:00 2001 From: Orlando M Guerreiro Date: Thu, 26 Jun 2025 16:17:50 +0100 Subject: [PATCH 4/6] =?UTF-8?q?Adicionar=20texto=20sobre=20o=20banner=20p?= =?UTF-8?q?=C3=BAblico=20e=20privado.=20Fixes=20#18?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/app/layouts/main/banner/banner.component.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/app/layouts/main/banner/banner.component.html b/src/main/webapp/app/layouts/main/banner/banner.component.html index 49ea24c..2e52f7e 100644 --- a/src/main/webapp/app/layouts/main/banner/banner.component.html +++ b/src/main/webapp/app/layouts/main/banner/banner.component.html @@ -1,6 +1,10 @@
-
- Route Zero +
+ Route Zero + + + InNOVA NOVA Information System on Environment and Sustainability +
\ No newline at end of file From c4ac52c53523b33bf768735b8cf99c3397361c50 Mon Sep 17 00:00:00 2001 From: forgejo-actions Date: Thu, 26 Jun 2025 15:34:19 +0000 Subject: [PATCH 5/6] Start next development cycle 1.0.8-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b97bc4..57fcf51 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.oguerreiro.resilient resilient - 1.0.7-SNAPSHOT + 1.0.8-SNAPSHOT jar Resilient Description for Resilient From b3e7810b5e5042237077c698eb03aebb4bcb1942 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 26 Jun 2025 17:10:00 +0100 Subject: [PATCH 6/6] Update .forgejo/workflows/release.yml --- .forgejo/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index a02c17e..7b8d83e 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -228,9 +228,10 @@ jobs: echo "Created release ID: $RELEASE_ID" # Upload artifact - JAR_FILE=$(ls target/resilient*.jar | head -n 1) + # NOTE: For safety, the artifact to upload is expected to be the EXACT $VERSION of this branch. If not, something is wrong. + JAR_FILE=$(ls target/resilient-$VERSION.jar | head -n 1) echo "Attaching file : $JAR_FILE" - curl -X POST "$API/repos/$REPO/releases/$RELEASE_ID/assets?name=resilient.jar" \ + curl -X POST "$API/repos/$REPO/releases/$RELEASE_ID/assets?name=resilient-$VERSION.jar" \ -H "Authorization: token ${{ secrets.FORGEJO_TOKEN }}" \ -H "Content-Type: application/java-archive" \ --data-binary @"$JAR_FILE"