Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ability to manually trigger typescript publish #154

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/typescript_package_publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: GBFS Typescript Language Bindings - Publish

on:
workflow_dispatch:
workflow_call:
Comment on lines +4 to +5
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To manual trigger the workflow it's only needed the workflow_dispatch event. The workflow_call is to allow being call from another workflow.

Suggested change
workflow_dispatch:
workflow_call:
workflow_dispatch:

push:
branches:
- master
Expand Down
4 changes: 2 additions & 2 deletions models/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gbfs-typescript-types",
"version": "1.0.8",
"description": "Language Bindings for GBFS in Typescript",
"version": "1.0.9",
"description": "Language Bindings for GBFS in Typescript.",
"license": "Apache-2.0",
"types": "index.d.ts",
"author": "MobilityData",
Expand Down
Loading