action-setup-baselime
action-setup-baselime copied to clipboard
Does this still work? Getting a 403
My github action is set up as:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Build & Deploy Worker
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- uses: baselime/[email protected]
with:
baselime-api-key: ${{ secrets.BASELIME_API_KEY }}
- name: 📍Create marker
run: |
baselime mark \
--name Deployment \
--url "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
--metadata '${{ toJson(github) }}' \
--service ${{ github.repository }}
I'm getting this:
baselime mark \
--name Deployment \
... redacted
shell: /usr/bin/bash -e {0}
Attention: Baselime now collects completely anonymous telemetry regarding usage. This is used to guide our roadmap.
You can learn more, including how to opt-out of this anonymous program, by heading over to:
https://baselime.io/docs/cli/anonymous-telemetry
- Creating marker
✖ Creating marker
Error - Forbidden
✖ Error - Request failed with status code 403
Use the --debug flag to view the complete stack trace.
Error: Process completed with exit code 1.
And i do have the secret set up