github-action
github-action copied to clipboard
Install seemingly fails quietly
Pretty simple,
I'm running:
- name: ZeroTier
uses: zerotier/github-action@v1
with:
network_id: ${{ secrets.ZEROTIER_NETWORK_ID }}
auth_token: ${{ secrets.ZEROTIER_ACCESS_TOKEN }}
and seeing the following output before experiencing a crash (with zero additional information)
Run zerotier/github-action@v1
Run zerotier/github-action/util/post@main
⏁ Installing ZeroTier
Note: fails with both zerotier/github-action@v1 and zerotier/[email protected]
Also seems to be frustratingly inconsistent. I was initially able to get past the issue by downgrading to v1.0.2, but subsequent pipeline runs failed all the same
Thanks for reporting. I'm not super familiar with the internals of this action. Will try to take a look soon.
Thanks @laduke. Apologies that I don't have more information, the crash seemingly doesn't produce logs.
2024-09-10T18:53:16.6216480Z ⏁ Installing ZeroTier
2024-09-10T18:53:16.9055188Z Post job cleanup.
2024-09-10T18:53:16.9113718Z Post job cleanup.
2024-09-10T18:53:16.9817446Z ⏁ Removing Runner from ZeroTier network
2024-09-10T18:53:17.7591245Z Success! Status code: 200
2024-09-10T18:53:17.7721890Z Post job cleanup.
@brennanwilkes I been using zerotier for my github actions consistent for months, zerotier install requires curl so make sure your runner has it.
deploy:
runs-on: ubuntu-latest
steps:
- name: ZeroTier
uses: zerotier/[email protected]
with:
network_id: ${{ secrets.ZEROTIER_NETWORK_ID }}
auth_token: ${{ secrets.ZEROTIER_CENTRAL_TOKEN }}
```