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