mirror of
https://github.com/trycua/lume.git
synced 2025-12-31 17:39:55 -06:00
fix(ci): ensure create-release waits for publish to complete
This commit is contained in:
2
.github/workflows/npm-publish-cli.yml
vendored
2
.github/workflows/npm-publish-cli.yml
vendored
@@ -108,7 +108,7 @@ jobs:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish-npm]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: ${{ needs.prepare.outputs.tag }}
|
||||
|
||||
2
.github/workflows/npm-publish-computer.yml
vendored
2
.github/workflows/npm-publish-computer.yml
vendored
@@ -60,7 +60,7 @@ jobs:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: ${{ needs.prepare.outputs.tag }}
|
||||
|
||||
2
.github/workflows/npm-publish-core.yml
vendored
2
.github/workflows/npm-publish-core.yml
vendored
@@ -60,7 +60,7 @@ jobs:
|
||||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: ${{ needs.prepare.outputs.tag }}
|
||||
|
||||
2
.github/workflows/pypi-publish-agent.yml
vendored
2
.github/workflows/pypi-publish-agent.yml
vendored
@@ -175,7 +175,7 @@ jobs:
|
||||
echo "CORE_VERSION=${{ needs.prepare.outputs.core_version }}" >> $GITHUB_ENV
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: "agent-v${{ needs.prepare.outputs.version }}"
|
||||
|
||||
@@ -80,7 +80,7 @@ jobs:
|
||||
echo "COMPUTER_VERSION=${{ needs.prepare.outputs.version }}" >> $GITHUB_ENV
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: "computer-server-v${{ needs.prepare.outputs.version }}"
|
||||
|
||||
2
.github/workflows/pypi-publish-computer.yml
vendored
2
.github/workflows/pypi-publish-computer.yml
vendored
@@ -158,7 +158,7 @@ jobs:
|
||||
echo "CORE_VERSION=${{ needs.prepare.outputs.core_version }}" >> $GITHUB_ENV
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: "computer-v${{ needs.prepare.outputs.version }}"
|
||||
|
||||
2
.github/workflows/pypi-publish-core.yml
vendored
2
.github/workflows/pypi-publish-core.yml
vendored
@@ -63,7 +63,7 @@ jobs:
|
||||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: "core-v${{ needs.prepare.outputs.version }}"
|
||||
|
||||
@@ -157,7 +157,7 @@ jobs:
|
||||
echo "COMPUTER_VERSION=${{ needs.prepare.outputs.computer_version }}" >> $GITHUB_ENV
|
||||
|
||||
create-release:
|
||||
needs: prepare
|
||||
needs: [prepare, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: "mcp-server-v${{ needs.prepare.outputs.version }}"
|
||||
|
||||
2
.github/workflows/pypi-publish-som.yml
vendored
2
.github/workflows/pypi-publish-som.yml
vendored
@@ -67,7 +67,7 @@ jobs:
|
||||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
||||
|
||||
create-release:
|
||||
needs: determine-version
|
||||
needs: [determine-version, publish]
|
||||
uses: ./.github/workflows/github-release-reusable.yml
|
||||
with:
|
||||
tag_name: "som-v${{ needs.determine-version.outputs.version }}"
|
||||
|
||||
Reference in New Issue
Block a user