Run without GitHub action #183
-
Hey thanks for this project 🥇 I wanted to know if its possible to run the cmd but not using the github action ? For example I'm my own github workflow doing In my package.json: But without adding the github action my pipeline fails running the build because missing project id |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, actually the BundleMon GitHub Action is pretty new, but you can still use it without the action. This is an example workflow without BundleMon GitHub Action. Anyway, if you are using GitHub actions workflows you need to install BundleMon GitHub App, as described here If you don't want to install the App, you can also create create a project and use API key.
If you want GitHub integration without BundleMon GitHub App, you will need to create GitHub access token without any scopes, the token owner must have write permission to the repo you would want to post outputs to. Add the token to |
Beta Was this translation helpful? Give feedback.
Yes, actually the BundleMon GitHub Action is pretty new, but you can still use it without the action.
This is an example workflow without BundleMon GitHub Action.
Anyway, if you are using GitHub actions workflows you need to install BundleMon GitHub App, as described here
If you don't want to install the App, you can also create create a project and use API key.
BUNDLEMON_PROJECT_ID
and the API key toBUNDLEMON_PROJECT_APIKEY
environment variables in your CIIf you want GitHub integration without BundleMon GitHub App, you will need to create GitHub access token without any scopes, the token owner must have write permis…