fix(server): selfhost startup (#9386)

This commit is contained in:
liuyi
2024-12-27 19:29:17 +08:00
committed by GitHub
parent 8bceece5b1
commit a16471c185
4 changed files with 17 additions and 4 deletions

View File

@@ -441,7 +441,7 @@ jobs:
node-version: 20
- name: Copy Selfhost Release Files
run: |
cp ./.docker/selfhost/compose.yaml ./release/docker-compose.yaml
cp ./.docker/selfhost/compose.yml ./release/docker-compose.yml
cp ./.docker/selfhost/.env.example ./release/.env.example
- name: Generate Release yml
run: |
@@ -456,7 +456,9 @@ jobs:
body: ''
draft: ${{ github.event.inputs.is-draft }}
prerelease: ${{ github.event.inputs.is-pre-release }}
files: ./release/*
files: |
- ./release/*
- ./release/.env.example
- name: Create Nightly Release Draft
if: ${{ github.ref_type == 'branch' }}
uses: softprops/action-gh-release@v2
@@ -471,4 +473,6 @@ jobs:
body: ''
draft: false
prerelease: true
files: ./release/*
files: |
- ./release/*
- ./release/.env.example