diff --git a/.github/actions/get-view/action.yml b/.github/actions/get-view/action.yml index 12270188..b6e62d8f 100644 --- a/.github/actions/get-view/action.yml +++ b/.github/actions/get-view/action.yml @@ -1,17 +1,9 @@ name: Reusable Workflow -on: - workflow_call: - inputs: - tag: - type: string - jobs: pull: runs-on: ubuntu-latest steps: - run: mkdir view && cd view - - run: wget https://github.com/metrico/qryn-view/releases/download/$TAG/dist.zip - env: - TAG: ${{ inputs.tag }} + - run: wget https://github.com/metrico/qryn-view/releases/download/$INPUT_TAG/dist.zip - run: unzip dist.zip && rm dist.zip