From 460c2f21f03d4ea67d019bf625c2b33a747f170a Mon Sep 17 00:00:00 2001 From: Niklas Merz Date: Fri, 8 Nov 2024 16:48:15 +0100 Subject: [PATCH] update action.yml --- Dockerfile | 5 ----- action.yml | 6 +++--- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff184a8..a2c4023 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,10 @@ FROM node:lts-alpine -LABEL "com.github.actions.name"="Pragmatic CalVer" -LABEL "com.github.actions.description"="Our take on CalVer" -LABEL "com.github.actions.icon"="moon" -LABEL "com.github.actions.color"="green" LABEL "org.opencontainers.image.description"="GitHub actoion for custom CalVer" LABEL "repository"="https://github.com/pragmaticindustries/calver-release-action" LABEL "maintainer"="pragmatic industries" - COPY . ./ RUN npm install RUN npm run build diff --git a/action.yml b/action.yml index 2b32e3e..3103b8f 100644 --- a/action.yml +++ b/action.yml @@ -1,4 +1,4 @@ -name: 'calver-release-action' +name: 'pragmatic-calver-release-action' description: 'GitHub Action to generate Calver release' author: 'cho0o0' inputs: @@ -32,8 +32,8 @@ outputs: title: description: 'Generated string of the release title' runs: - using: node16 - main: 'dist/index.js' + using: 'docker' + image: 'Dockerfile' branding: icon: 'arrow-up-circle' color: 'blue'