79314de299
- 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
16 lines
360 B
YAML
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: ./
|