mirror of
https://github.com/dangeroustech/ZeroTierBridge.git
synced 2025-12-06 00:56:58 +00:00
18 lines
426 B
YAML
18 lines
426 B
YAML
name: Generate SBOM
|
|
|
|
on:
|
|
release:
|
|
types: [created, published]
|
|
|
|
jobs:
|
|
GenerateSBOM:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Generate SBOM
|
|
uses: anchore/sbom-action@v0
|
|
id: sbom
|
|
with:
|
|
image: registry.dangerous.tech/dangeroustech/zerotierbridge:latest
|
|
registry-username: ${{ secrets.REGISTRY_USERNAME }}
|
|
registry-password: ${{ secrets.REGISTRY_PASSWORD }}
|