This action makes sure the GitHub repository is ready to access Ontrack and sets up some outputs & environment variables for being used by other Ontrack GitHub actions.
uses: nemerosa/ontrack-github-action-init@v1
The following secrets must be set:
ONTRACK_URL
- URL to the Ontrack instance to targetONTRACK_TOKEN
- authentication token to use
Note that only Ontrack version 4 and above is supported.
Output name | Environment variable | Description |
---|---|---|
repository |
ONTRACK_GITHUB_REPOSITORY |
Contains only the name of the GitHub repository, without the user or the organization. |
Install the dependencies
npm install
Run the tests ✔️
$ npm test
✓ test runs (95ms)
...
GitHub Actions will run the entry point from the action.yml. Packaging assembles the code into one file that can be checked in to Git, enabling fast and reliable execution and preventing the need to check in node_modules.
Actions are run from GitHub repos. Packaging the action will create a packaged action in the dist folder.
Run prepare
npm run prepare
Since the packaged index.js is run from the dist folder.
git add dist
Users shouldn't consume the action from master since that would be latest code and actions can break compatibility between major versions.
Checkin to the v1 release branch
git checkout -b v1
git commit -a -m "v1 release"
git push origin v1
Your action is now published! 🚀
See the versioning documentation