Skip to content

Update Containerfile #7

Update Containerfile

Update Containerfile #7

name: Build & Push SteamBox
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build SteamBox
run: docker build -t ghcr.io/${{ github.repository }}:latest -f Containerfile .
- name: Push SteamBox
run: docker push ghcr.io/${{ github.repository }}:latest