Skip to content

Commit

Permalink
fix(ci): retry release 7
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Sep 27, 2023
1 parent af2ae64 commit 936f172
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
ref: ${{ github.ref }}

- uses: pnpm/action-setup@v2
with:
Expand All @@ -93,8 +94,9 @@ jobs:
with:
github_token: ${{ secrets.GH_TOKEN }}

# release the app after building if matching branch
release: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' }}
# If the commit is tagged with a version (e.g. "v1.0.0"),
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
package_root: "./packages/agent-explore"
build_script_name: build-electron
package_manager: pnpm
1 change: 0 additions & 1 deletion packages/agent-explore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,3 @@ You can specify a default agent configuration
```bash
agent-explore serve --port 8080 --schemaUrl https://example.ngrok.io/open-api.json --apiKey test123 --name Agent
```

1 change: 0 additions & 1 deletion packages/plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ const Plugin: IPlugin = {
};

```

0 comments on commit 936f172

Please sign in to comment.