Files

25 lines
864 B
YAML
Raw Permalink Normal View History

2023-11-17 20:04:42 +00:00
name: 'Package and Publish'
description: 'Publish actions as OCI artifacts to GHCR'
# TODO: Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
2024-03-01 16:45:32 +00:00
inputs:
github-token:
description: 'The GitHub actions token used to authenticate with GitHub APIs'
2024-09-16 15:16:26 +02:00
default: ${{ github.token }}
2024-03-01 16:45:32 +00:00
2023-11-17 20:04:42 +00:00
outputs:
2024-01-25 08:34:02 -08:00
package-manifest-sha:
description: 'A sha256 hash of the package manifest'
attestation-manifest-sha:
description: 'The sha256 of the provenance attestation uploaded to GHCR. This is not present if the package is not attested, e.g. in enterprise environments.'
referrer-index-manifest-sha:
description: 'The sha256 of the referrer index uploaded to GHCR. This is not present if the package is not attested, e.g. in enterprise environments.'
2024-01-30 14:02:59 +00:00
2023-11-17 20:04:42 +00:00
runs:
2024-03-01 16:45:32 +00:00
using: node20
main: dist/index.js