├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── bin ├── steam_api.dll ├── steam_guard.exe └── steamcmd.exe ├── debug.json.example ├── dist ├── constants.js ├── debug.js ├── helpers │ ├── buildDescription.js │ ├── createGMA.js │ ├── getFilePaths.js │ ├── publishGMA.js │ ├── runCmd.js │ ├── validateFiles.js │ └── validateMetaData.js ├── index.js └── schemas │ └── addon.schema.js ├── package.json ├── src ├── constants.ts ├── debug.ts ├── helpers │ ├── buildDescription.ts │ ├── createGMA.ts │ ├── getFilePaths.ts │ ├── publishGMA.ts │ ├── runCmd.ts │ ├── validateFiles.ts │ └── validateMetaData.ts ├── index.ts └── schemas │ └── addon.schema.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/action.yml -------------------------------------------------------------------------------- /bin/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/bin/steam_api.dll -------------------------------------------------------------------------------- /bin/steam_guard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/bin/steam_guard.exe -------------------------------------------------------------------------------- /bin/steamcmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/bin/steamcmd.exe -------------------------------------------------------------------------------- /debug.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/debug.json.example -------------------------------------------------------------------------------- /dist/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/constants.js -------------------------------------------------------------------------------- /dist/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/debug.js -------------------------------------------------------------------------------- /dist/helpers/buildDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/buildDescription.js -------------------------------------------------------------------------------- /dist/helpers/createGMA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/createGMA.js -------------------------------------------------------------------------------- /dist/helpers/getFilePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/getFilePaths.js -------------------------------------------------------------------------------- /dist/helpers/publishGMA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/publishGMA.js -------------------------------------------------------------------------------- /dist/helpers/runCmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/runCmd.js -------------------------------------------------------------------------------- /dist/helpers/validateFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/validateFiles.js -------------------------------------------------------------------------------- /dist/helpers/validateMetaData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/helpers/validateMetaData.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/schemas/addon.schema.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/package.json -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/helpers/buildDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/buildDescription.ts -------------------------------------------------------------------------------- /src/helpers/createGMA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/createGMA.ts -------------------------------------------------------------------------------- /src/helpers/getFilePaths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/getFilePaths.ts -------------------------------------------------------------------------------- /src/helpers/publishGMA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/publishGMA.ts -------------------------------------------------------------------------------- /src/helpers/runCmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/runCmd.ts -------------------------------------------------------------------------------- /src/helpers/validateFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/validateFiles.ts -------------------------------------------------------------------------------- /src/helpers/validateMetaData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/helpers/validateMetaData.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schemas/addon.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/src/schemas/addon.schema.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Earu/GSW-action/HEAD/tsconfig.json --------------------------------------------------------------------------------