From c9196e322bfc1835c3d0fbdc951befd49e505ec6 Mon Sep 17 00:00:00 2001 From: Federico Orlandau Date: Tue, 11 Jan 2022 19:37:02 +0100 Subject: [PATCH] Fix yaml file --- action.yml | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index 79484e8..de3afb1 100644 --- a/action.yml +++ b/action.yml @@ -4,15 +4,15 @@ author: 'fedeorlandau' inputs: content: description: 'The content to encode to QR code. Must be string.' -required: true + required: true outputs: data: description: 'Base64 Data For the Generated QR Code' -text: - description: 'ASCII Text Representation of the Generated QR COde' + text: + description: 'ASCII Text Representation of the Generated QR COde' runs: using: 'node12' -main: 'dist/index.js' + main: 'dist/index.js' branding: icon: 'image' -color: 'gray-dark' + color: 'gray-dark' diff --git a/package.json b/package.json index e32308c..88f6e49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "better-qr-code-generator", - "version": "2.0.0", + "version": "3.0.0", "description": "A GitHub Action that generates a QR Code and returns base64 Data", "main": "lib/main.js", "scripts": {