From b8a92fc523221f980861c4a38f1c26ddcaaaf9d7 Mon Sep 17 00:00:00 2001 From: skywarth Date: Mon, 15 May 2023 22:46:59 +0300 Subject: [PATCH] Update action.yml --- action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/action.yml b/action.yml index b310739..090a713 100644 --- a/action.yml +++ b/action.yml @@ -5,9 +5,19 @@ branding: icon: 'zap' color: 'purple' author: 'Skywarth' +inputs: + build_path: + description: "Build path string for vite/vue, this affects the routing, history and asset links. Make sure to provide appropriately since Github Pages stores your app in a directory under a subdomain." + required: false + default: ${{ github.event.repository.name }} runs: using: "composite" steps: + - name: Dump context + uses: crazy-max/ghaction-dump-context@v2 + - name: Dump build_path + run: echo "build_path is: ${{ inputs.build_path }}" + shell: bash - name: Setup Pages uses: actions/configure-pages@v3 - name: Install