mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92f1400a35 | ||
|
|
47f1938136 | ||
|
|
f226218b3a | ||
|
|
8f7fa0dea1 | ||
|
|
292b3c805d | ||
|
|
ded26f92af | ||
|
|
8cce7bbaf4 | ||
|
|
228b8c3ec7 | ||
|
|
2e298ce757 | ||
|
|
81daa9f0b0 | ||
|
|
713c8d9177 | ||
|
|
f571162eed | ||
|
|
19d2872943 | ||
|
|
0752b8bf7f | ||
|
|
c01097196a | ||
|
|
5f1bee018d | ||
|
|
8655b81618 | ||
|
|
1702e43373 | ||
|
|
79425f4490 | ||
|
|
2fcddea0fa | ||
|
|
a43eedaf9f | ||
|
|
77bc24990e | ||
|
|
edbc79c89e | ||
|
|
1ce3acdde0 |
@@ -1,3 +1,54 @@
|
|||||||
|
#name: Auto Release bot
|
||||||
|
#
|
||||||
|
#on:
|
||||||
|
# pull_request:
|
||||||
|
# types: [ closed ]
|
||||||
|
# branches:
|
||||||
|
# - main
|
||||||
|
#
|
||||||
|
#jobs:
|
||||||
|
# release:
|
||||||
|
# if: github.event.pull_request.merged == true
|
||||||
|
# runs-on: ubuntu-latest
|
||||||
|
# permissions:
|
||||||
|
# contents: write
|
||||||
|
#
|
||||||
|
# steps:
|
||||||
|
# - uses: actions/create-github-app-token@v1
|
||||||
|
# id: app-token
|
||||||
|
# with:
|
||||||
|
# app-id: ${{ vars.APP_ID }}
|
||||||
|
# private-key: ${{ secrets.APP_PRIVATE_KEY }}
|
||||||
|
#
|
||||||
|
# - uses: actions/checkout@v4
|
||||||
|
# with:
|
||||||
|
# fetch-depth: 0
|
||||||
|
# token: ${{ steps.app-token.outputs.token }}
|
||||||
|
# ref: ${{ github.base_ref }}
|
||||||
|
#
|
||||||
|
# - uses: pnpm/action-setup@v4
|
||||||
|
#
|
||||||
|
# - uses: actions/setup-node@v4
|
||||||
|
# with:
|
||||||
|
# node-version: "lts/*"
|
||||||
|
# cache: "pnpm"
|
||||||
|
#
|
||||||
|
# - run: pnpm install --frozen-lockfile
|
||||||
|
#
|
||||||
|
# - run: git config --global user.name 'github-actions[bot]'
|
||||||
|
# - run: git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||||
|
#
|
||||||
|
# - name: Push tags
|
||||||
|
# run: git push origin --tags
|
||||||
|
#
|
||||||
|
# - name: Run release-it
|
||||||
|
# run: |
|
||||||
|
# git pull origin main
|
||||||
|
# pnpm exec release-it --ci
|
||||||
|
# env:
|
||||||
|
# GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
||||||
|
|
||||||
|
|
||||||
name: Auto Release bot
|
name: Auto Release bot
|
||||||
|
|
||||||
on:
|
on:
|
||||||
@@ -38,9 +89,17 @@ jobs:
|
|||||||
- run: git config --global user.name 'github-actions[bot]'
|
- run: git config --global user.name 'github-actions[bot]'
|
||||||
- run: git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
- run: git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||||
|
|
||||||
- name: Run release-it
|
- name: Bump version and tag
|
||||||
|
run: pnpm exec release-it --ci --no-github
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
||||||
|
|
||||||
|
- name: Push commits and tags
|
||||||
run: |
|
run: |
|
||||||
git pull origin main
|
git push origin main
|
||||||
pnpm exec release-it --ci
|
git push origin --tags
|
||||||
|
|
||||||
|
- name: Create GitHub release
|
||||||
|
run: pnpm exec release-it --ci --only-github
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
|
||||||
|
|||||||
@@ -31,13 +31,13 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
gh release edit ${{ github.ref_name }} --draft=false
|
gh release edit v${{ github.ref_name }} --draft=false
|
||||||
|
|
||||||
discord_notification:
|
discord_notification:
|
||||||
needs: docker_publish
|
needs: docker_publish
|
||||||
uses: ./.github/workflows/discord.yml
|
uses: ./.github/workflows/discord.yml
|
||||||
with:
|
with:
|
||||||
discord_title: "New Release: ${{ github.ref_name }}"
|
discord_title: "New Release: v${{ github.ref_name }}"
|
||||||
discord_color: 3066993
|
discord_color: 3066993
|
||||||
discord_footer: "Portabase"
|
discord_footer: "Portabase"
|
||||||
secrets:
|
secrets:
|
||||||
|
|||||||
+6
-11
@@ -1,22 +1,17 @@
|
|||||||
{
|
{
|
||||||
|
"github": {
|
||||||
|
"release": true,
|
||||||
|
"draft": true,
|
||||||
|
"tokenRef": "GITHUB_TOKEN"
|
||||||
|
},
|
||||||
"git": {
|
"git": {
|
||||||
"commit": true,
|
"commit": true,
|
||||||
"commitMessage": "chore: release v${version}",
|
"commitMessage": "chore: release v${version}",
|
||||||
"requireCleanWorkingDir": true,
|
"requireCleanWorkingDir": true,
|
||||||
"tag": true,
|
"tag": true,
|
||||||
"tagName": "${version}",
|
"tagName": "v${version}",
|
||||||
"push": true
|
"push": true
|
||||||
},
|
},
|
||||||
"github": {
|
|
||||||
"release": true,
|
|
||||||
"tokenRef": "GITHUB_TOKEN",
|
|
||||||
"draft": true,
|
|
||||||
"tagName": "${version}",
|
|
||||||
"push": true
|
|
||||||
},
|
|
||||||
"hooks": {
|
|
||||||
"after:git:push": "sleep 5"
|
|
||||||
},
|
|
||||||
"plugins": {
|
"plugins": {
|
||||||
"@release-it/conventional-changelog": {
|
"@release-it/conventional-changelog": {
|
||||||
"preset": {
|
"preset": {
|
||||||
|
|||||||
+1
-1
@@ -31,5 +31,5 @@ keywords:
|
|||||||
- web-ui
|
- web-ui
|
||||||
- agent
|
- agent
|
||||||
license: Apache-2.0
|
license: Apache-2.0
|
||||||
version: 1.4.21
|
version: 1.4.26
|
||||||
date-released: '2026-03-02'
|
date-released: '2026-03-02'
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "portabase",
|
"name": "portabase",
|
||||||
"version": "1.4.21",
|
"version": "1.4.26",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbopack -p 8887",
|
"dev": "next dev --turbopack -p 8887",
|
||||||
|
|||||||
Reference in New Issue
Block a user