Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .github/workflows/build-oci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Create OCI

on:
push:
branches:
- main
workflow_dispatch:

jobs:
docker-build:
permissions:
contents: read
packages: write
id-token: write

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Build Docker Images
uses: philips-software/docker-ci-scripts@v5.0.0
with:
image-name: github-issue-forms-parser
tags: latest 0.1
push-branches: main
slsa-provenance: true
sign: true
sbom: true
env:
REGISTRY_USERNAME: ${{ github.actor }}
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REGISTRY_URL: ghcr.io/edumserrano
GITHUB_ORGANIZATION: edumserrano
KEYLESS: true
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ outputs:
description: 'The parsed issue form as a JSON string.'
runs:
using: 'docker'
image: 'Dockerfile'
image: 'docker://ghcr.io/edumserrano/github-issue-forms-parser:latest'
args:
- parse-issue-form
- --template-filepath
Expand Down