Conveniently call Dorametrix to create a deployment event.
Looking for a demo? In that case you might be interested in the Dorametrix Pipe demo.
You need to set two required secrets—DORAMETRIX_ENDPOINT
and DORAMETRIX_API_KEY
—in accordance with the overall Dorametrix requirements.
- Always ensure you have secure settings regarding what actions you allow.
- Note that Dorametrix will not work without access to the Git history (i.e.
with.fetch-depth: 0
).
Dorametrix API endpoint, in the format https://mydomain.com/stagename
.
Dorametrix API token.
The product name can be optionally set. If not, it will default to the repository name.
This Action uses two secrets: DORAMETRIX_ENDPOINT
and DORAMETRIX_API_KEY
, as described above.
If the product name is not set, Dorametrix will use ${{ github.event.repository.name }}
to grab the repository name.
on: [push]
jobs:
dorametrix:
runs-on: ubuntu-latest
name: Dorametrix
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: dorametrix
uses: mikaelvesavuori/dorametrix-action@v3
with:
endpoint: ${{ secrets.DORAMETRIX_ENDPOINT }}
api-key: ${{ secrets.DORAMETRIX_API_KEY }}