Compare commits

...
2 Commits
Author SHA1 Message Date
github-actions[bot] c7d949b1d1 chore: release 1.4.56 2026-03-06 20:47:32 +00:00
6593a8e324 fix: workflow
* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

---------

Co-authored-by: charlesgauthereau <charles.gauthereau@soluce-technologies.com>
2026-03-06 21:47:00 +01:00
4 changed files with 12 additions and 11 deletions
+9 -8
View File
@@ -132,27 +132,28 @@ jobs:
run: | run: |
VERSION="${{ inputs.version }}" VERSION="${{ inputs.version }}"
IFS='.' read -r MAJOR MINOR PATCH <<< "$VERSION" IFS='.' read -r MAJOR MINOR PATCH <<< "$VERSION"
TAGS="$VERSION" echo "VERSION_TAG=$VERSION" >> $GITHUB_OUTPUT
if [ -n "$MINOR" ]; then if [ -n "$MINOR" ]; then
TAGS="$TAGS $MAJOR.$MINOR" echo "MINOR_TAG=$MAJOR.$MINOR" >> $GITHUB_OUTPUT
fi fi
if [ -n "$MAJOR" ]; then if [ -n "$MAJOR" ]; then
TAGS="$TAGS $MAJOR" echo "MAJOR_TAG=$MAJOR" >> $GITHUB_OUTPUT
fi fi
if [ "${{ inputs.add_latest }}" = "true" ]; then if [ "${{ inputs.add_latest }}" = "true" ]; then
TAGS="$TAGS latest" echo "LATEST_TAG=latest" >> $GITHUB_OUTPUT
fi fi
echo "tags=$TAGS" >> $GITHUB_OUTPUT
- name: Extract Docker metadata - name: Extract Docker metadata
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ inputs.image_name }} images: ${{ inputs.image_name }}
tags: | tags: |
type=raw,value=${{ steps.tags.outputs.tags }} type=raw,value=${{ steps.tags.outputs.VERSION_TAG }}
type=raw,value=${{ steps.tags.outputs.MINOR_TAG }}
type=raw,value=${{ steps.tags.outputs.MAJOR_TAG }}
type=raw,value=${{ steps.tags.outputs.LATEST_TAG }}
- name: Create and push manifest list - name: Create and push manifest list
working-directory: /tmp/digests working-directory: /tmp/digests
+1 -1
View File
@@ -120,7 +120,7 @@ jobs:
- finalize-release - finalize-release
uses: ./.github/workflows/discord.yml uses: ./.github/workflows/discord.yml
with: with:
release_tag: ${{ needs.create-release.outputs.draft_tag }} release_tag: ${{ needs.create-release.outputs.version }}
discord_title: "New Release" discord_title: "New Release"
discord_color: 3066993 discord_color: 3066993
discord_footer: "Portabase" discord_footer: "Portabase"
+1 -1
View File
@@ -31,5 +31,5 @@ keywords:
- web-ui - web-ui
- agent - agent
license: Apache-2.0 license: Apache-2.0
version: 1.4.55 version: 1.4.56
date-released: '2026-03-02' date-released: '2026-03-02'
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "portabase", "name": "portabase",
"version": "1.4.55", "version": "1.4.56",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev --turbopack -p 8887", "dev": "next dev --turbopack -p 8887",