From e1315186a5f9dde7f81789f5fed856178d7b5a5d Mon Sep 17 00:00:00 2001 From: Joshua Gilman Date: Thu, 29 Aug 2024 19:06:54 -0400 Subject: [PATCH] wip: adds setup action --- .github/workflows/test.yml | 9 ++------- forge/actions/setup/action.yml | 13 +++++++++++++ 2 files changed, 15 insertions(+), 7 deletions(-) create mode 100644 forge/actions/setup/action.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6cd73e7d..0cb4d790 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,5 @@ jobs: - uses: actions/checkout@v4 - name: Install Forge CLI uses: ./forge/actions/install - - name: Dump blueprint - id: blueprint - uses: ./forge/actions/blueprint - with: - path: . - - name: Print result - run: echo '${{ steps.blueprint.outputs.json }}' \ No newline at end of file + - name: Setup + uses: ./forge/actions/setup \ No newline at end of file diff --git a/forge/actions/setup/action.yml b/forge/actions/setup/action.yml new file mode 100644 index 00000000..38d0faba --- /dev/null +++ b/forge/actions/setup/action.yml @@ -0,0 +1,13 @@ +name: Setup CI +description: Sets up the CI with the configured providers +runs: + using: composite + steps: + - name: Dump blueprint + id: blueprint + uses: ./forge/actions/blueprint + with: + path: . + - name: Show + shell: bash + run: echo '${{ steps.blueprint.outputs.json }}' \ No newline at end of file