From 4cb1aebe3881f1aeefb81ab9dd36e4bf5f739105 Mon Sep 17 00:00:00 2001 From: Smitha Borkar <12040799+smithaborkar@users.noreply.github.com> Date: Tue, 7 Jun 2022 11:26:59 -0700 Subject: [PATCH] Create action.yml --- action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..83535f2 --- /dev/null +++ b/action.yml @@ -0,0 +1,13 @@ +name: 'Set the Base URL' +description: 'Get the base URL where the Github Page will be hosted' +runs: + using: 'node16' + main: 'dist/index.js' +inputs: + token: + description: 'GitHub token' + default: ${{ github.token }} + required: true +outputs: + base_url: + description: 'URL to deployed GitHub Pages'