Skip to content

Update game_server.cpp #9

Update game_server.cpp

Update game_server.cpp #9

name: Build and Push Dev Docker Image
on:
push:
branches: [dev]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/triggeron_game_server:dev
${{ secrets.DOCKERHUB_USERNAME }}/triggeron_game_server:dev-${{ github.sha }}