mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e4e41ca07 | ||
|
|
a8eb3f5f1a | ||
|
|
73f7ac057c | ||
|
|
d359d53fb7 | ||
|
|
ba2fc55188 | ||
|
|
a6896c9b50 | ||
|
|
8dd74f310d | ||
|
|
44ed9e9ca6 | ||
|
|
c925407f05 | ||
|
|
622fc369d0 | ||
|
|
9580ad3934 | ||
|
|
b33c0810d5 | ||
|
|
8fbe639aa1 | ||
|
|
d7e2ec3b08 | ||
|
|
fdaca0e8a7 | ||
|
|
7959f903bb | ||
|
|
59eb91f28f | ||
|
|
64724d2a92 | ||
|
|
91a6d672fa | ||
|
|
50809476fa | ||
|
|
282ffb543c | ||
|
|
68fea480ae | ||
|
|
ec64ea8229 | ||
|
|
b13433e554 | ||
|
|
d9fd382cb2 | ||
|
|
4d324d885d | ||
|
|
af1a437523 | ||
|
|
77901ae1bc | ||
|
|
1aeff542e5 | ||
|
|
b81ad079ee | ||
|
|
044edcda07 | ||
|
|
3f7eb4528e | ||
|
|
0008f70552 | ||
|
|
2695715180 | ||
|
|
b3be1a561c | ||
|
|
d297f1a27b | ||
|
|
b513509b01 | ||
|
|
25744efc66 | ||
|
|
21e37366fb | ||
|
|
3f6a47c39d | ||
|
|
4dace0a32b | ||
|
|
7b6ca12744 | ||
|
|
da1b5a969c | ||
|
|
8e5d6eec6c | ||
|
|
92f1400a35 | ||
|
|
47f1938136 | ||
|
|
f226218b3a | ||
|
|
8f7fa0dea1 | ||
|
|
292b3c805d | ||
|
|
ded26f92af | ||
|
|
8cce7bbaf4 | ||
|
|
228b8c3ec7 | ||
|
|
2e298ce757 | ||
|
|
81daa9f0b0 | ||
|
|
713c8d9177 | ||
|
|
f571162eed | ||
|
|
19d2872943 | ||
|
|
0752b8bf7f | ||
|
|
c01097196a | ||
|
|
5f1bee018d | ||
|
|
8655b81618 | ||
|
|
1702e43373 | ||
|
|
a7d411f6ff | ||
|
|
6a84da0f96 | ||
|
|
79425f4490 | ||
|
|
2fcddea0fa | ||
|
|
a43eedaf9f | ||
|
|
77bc24990e | ||
|
|
edbc79c89e | ||
|
|
1ce3acdde0 |
@@ -2,7 +2,7 @@ name: Auto Release bot
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
types: [ closed ]
|
||||
branches:
|
||||
- main
|
||||
|
||||
@@ -12,7 +12,6 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/create-github-app-token@v1
|
||||
id: app-token
|
||||
@@ -38,7 +37,11 @@ jobs:
|
||||
- run: git config --global user.name 'github-actions[bot]'
|
||||
- run: git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
|
||||
- name: Fetch tags
|
||||
run: git fetch --tags
|
||||
|
||||
- name: Run release-it
|
||||
id: release_step
|
||||
run: |
|
||||
git pull origin main
|
||||
pnpm exec release-it --ci
|
||||
|
||||
@@ -1,16 +1,26 @@
|
||||
name: Publish Docker image for release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*.*.*"
|
||||
- "!*-*"
|
||||
release:
|
||||
types: [created, edited]
|
||||
# push:
|
||||
# tags:
|
||||
# - "*.*.*"
|
||||
# - "!*-*"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
|
||||
log-draft-tag:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Read draft tag
|
||||
run: |
|
||||
echo ${{ github.event.release.id }}
|
||||
|
||||
docker_publish:
|
||||
uses: ./.github/workflows/docker.yml
|
||||
with:
|
||||
@@ -22,22 +32,38 @@ jobs:
|
||||
needs: docker_publish
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Publish GitHub Release
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gh release edit ${{ github.ref_name }} --draft=false
|
||||
- name: Get draft release tag
|
||||
if: ${{ github.event.release.draft == true }}
|
||||
id: draft_tag
|
||||
run: |
|
||||
TAG=$(gh release view ${{ github.event.release.id }} --json tagName -q ".tagName")
|
||||
echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV
|
||||
|
||||
|
||||
# - name: Publish GitHub Release
|
||||
# if: ${{ github.event.release.draft == true }}
|
||||
# env:
|
||||
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# # gh release edit v${{ github.ref_name }} --draft=false
|
||||
# run: |
|
||||
# gh release edit ${{ github.event.release.id }} --draft=false
|
||||
- name: Publish GitHub Release
|
||||
if: ${{ github.event.release.draft == true }}
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gh release edit $RELEASE_TAG --draft=false
|
||||
|
||||
discord_notification:
|
||||
needs: docker_publish
|
||||
uses: ./.github/workflows/discord.yml
|
||||
with:
|
||||
discord_title: "New Release: ${{ github.ref_name }}"
|
||||
discord_title: "New Release: v${{ github.ref_name }}"
|
||||
discord_color: 3066993
|
||||
discord_footer: "Portabase"
|
||||
secrets:
|
||||
|
||||
+8
-9
@@ -1,16 +1,15 @@
|
||||
{
|
||||
"git": {
|
||||
"commit": true,
|
||||
"commitMessage": "chore: release v${version}",
|
||||
"requireCleanWorkingDir": true,
|
||||
"tag": true,
|
||||
"tagName": "${version}",
|
||||
"push": true
|
||||
},
|
||||
"github": {
|
||||
"release": true,
|
||||
"tokenRef": "GITHUB_TOKEN",
|
||||
"draft": true,
|
||||
"tokenRef": "GITHUB_TOKEN",
|
||||
"update": true
|
||||
},
|
||||
"git": {
|
||||
"commit": true,
|
||||
"commitMessage": "chore: release ${version}",
|
||||
"requireCleanWorkingDir": true,
|
||||
"tag": true,
|
||||
"tagName": "${version}",
|
||||
"push": true
|
||||
},
|
||||
|
||||
+1
-1
@@ -31,5 +31,5 @@ keywords:
|
||||
- web-ui
|
||||
- agent
|
||||
license: Apache-2.0
|
||||
version: 1.4.20
|
||||
version: 1.4.44
|
||||
date-released: '2026-03-02'
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "portabase",
|
||||
"version": "1.4.20",
|
||||
"version": "1.4.44",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev --turbopack -p 8887",
|
||||
|
||||
Reference in New Issue
Block a user