Files
publish-immutable-action/.github/workflows/release.yml
T
David Daly 79314de299 Refactor into a composite action and integrate with generate-build-provenance action
- Refactor the action from a 'node' action to a 'composite' action
- Create and output a sha256 hash of the image manifest
- Update action inputs & outputs
- Integrate with the 'generate-build-provenance' action as part of the composite action
2024-01-26 16:34:37 +00:00

16 lines
360 B
YAML

name: 'release'
on: # rebuild any PRs and main branch changes
release:
types: [created]
jobs:
package-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checking out!
uses: actions/checkout@v4
- uses: actions/setup-node@v3.6.0
with:
node-version: 16
- name: Publish action package
uses: ./