mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 06:18:42 +02:00
30 lines
689 B
YAML
30 lines
689 B
YAML
# update the steam development version
|
|
name: "Deploy dev to steam development branch"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup steamcmd
|
|
uses: CyberAndrii/setup-steamcmd@v1
|
|
|
|
- name: Checkout dev branch
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: dev
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Build and deploy
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
npm run electron
|
|
steamcmd +login ${{ secrets.STEAM_USERNAME }} ${{ secrets.STEAM_PASSWORD }} +run_app_build ../tools/steamdev.vdf +quit
|