mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-03 05:21:27 +00:00
21 lines
555 B
YAML
21 lines
555 B
YAML
name: Docker Build
|
|
on:
|
|
schedule:
|
|
- cron: "19 1 * * *"
|
|
workflow_dispatch:
|
|
jobs:
|
|
publish:
|
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build and Publish Docker Image to Registry
|
|
uses: elgohr/Publish-Docker-Github-Action@v5
|
|
with:
|
|
name: tgstation/tgstation
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
dockerfile: Dockerfile
|
|
tags: "latest"
|