Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/buildalon/setup-steamcmd
A GitHub Action to setup the steamcmd tool command alias
https://github.com/buildalon/setup-steamcmd
actions automation buildalon game-ci game-development github github-action-tool github-actions setup-steamcmd setup-tool steam steam-setup steamcmd steamcmd-setup tool-cache tool-setup
Last synced: about 1 month ago
JSON representation
A GitHub Action to setup the steamcmd tool command alias
- Host: GitHub
- URL: https://github.com/buildalon/setup-steamcmd
- Owner: buildalon
- License: mit
- Created: 2024-08-08T16:39:54.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-11T14:49:48.000Z (2 months ago)
- Last Synced: 2024-09-29T23:23:35.490Z (about 2 months ago)
- Topics: actions, automation, buildalon, game-ci, game-development, github, github-action-tool, github-actions, setup-steamcmd, setup-tool, steam, steam-setup, steamcmd, steamcmd-setup, tool-cache, tool-setup
- Language: TypeScript
- Homepage: https://buildalon.com
- Size: 409 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Buildalon Setup SteamCmd
[![Discord](https://img.shields.io/discord/939721153688264824.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/VM9cWJ9rjH) [![marketplace](https://img.shields.io/static/v1?label=&labelColor=505050&message=Buildalon%20Actions&color=FF1E6F&logo=github-actions&logoColor=0076D6)](https://github.com/marketplace?query=buildalon) [![actions](https://github.com/buildalon/setup-steamcmd/actions/workflows/validate.yml/badge.svg?branch=main&event=push)](https://github.com/buildalon/setup-steamcmd/actions/workflows/validate.yml)
A GitHub Action to setup the [`steamcmd`](https://developer.valvesoftware.com/wiki/SteamCMD) command alias.
## Exported Env Vars
- `STEAM_CMD` the `steamcmd` directory location.
- `STEAM_DIR` the steam install directory location.
- `STEAM_TEMP` the temp steam directory location.## How to use
```yaml
jobs:
validate:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]steps:
# download and setup the steamcmd
- uses: buildalon/setup-steamcmd@v1
# run commands
- run: |
which steamcmd
steamcmd +help +quit
```For a full list of `steamcmd` commands see [this list](https://github.com/dgibbs64/SteamCMD-Commands-List/blob/main/steamcmd_commands.txt).