mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
Merge pull request #1366 from logto-io/gao-fix-release-tag
ci: fix release tag
This commit is contained in:
commit
2bea8bf1e2
2 changed files with 6 additions and 1 deletions
5
.github/workflows/release.yml
vendored
5
.github/workflows/release.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
- name: Compose up
|
||||
run: TAG=dev docker compose up -d
|
||||
run: TAG=${{ steps.meta.outputs.tags[0] }} docker compose up -d
|
||||
|
||||
- name: Sleep for 30 seconds
|
||||
run: sleep 30s
|
||||
|
@ -67,6 +67,9 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Node and pnpm
|
||||
uses: silverhand-io/actions-node-pnpm-run-steps@v1.2.2
|
||||
|
||||
- name: Package
|
||||
run: ./package.sh
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
set -eo pipefail
|
||||
|
||||
echo Building packages
|
||||
pnpm -- lerna run build --stream
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue