add back dir listing

This commit is contained in:
Vilsol 2022-05-03 00:07:43 +03:00
parent d3622c728a
commit b376b0b9cb

View file

@ -72,6 +72,14 @@ jobs:
- name: Install Satisfactory Dedicated Server - name: Install Satisfactory Dedicated Server
run: steamcmd +login anonymous +force_install_dir $GITHUB_WORKSPACE/SatisfactoryDedicatedServer +app_update 1690800 validate +quit run: steamcmd +login anonymous +force_install_dir $GITHUB_WORKSPACE/SatisfactoryDedicatedServer +app_update 1690800 validate +quit
- name: List directory (linux)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: ls -lR
- name: List directory (windows)
if: ${{ matrix.os == 'windows-latest' }}
run: tree /F
- name: Download GQL schema - name: Download GQL schema
run: "npx graphqurl https://api.ficsit.app/v2/query --introspect -H 'content-type: application/json' > schema.graphql" run: "npx graphqurl https://api.ficsit.app/v2/query --introspect -H 'content-type: application/json' > schema.graphql"