mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-03 23:07:10 +01:00
69e7d8ee55
* impl version watchdog * Update update.sh Co-authored-by: Florian Kinder <florian.kinder@fankserver.com> * increase update check frequency to per hour * Update .github/workflows/update.yml Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update update.sh Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update update.sh Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * Update .github/workflows/update.yml Co-authored-by: Sandro <sandro.jaeckel@gmail.com> * prevent schedule running on fork --------- Co-authored-by: Florian Kinder <florian.kinder@fankserver.com> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
21 lines
369 B
YAML
21 lines
369 B
YAML
name: Docker build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
tags:
|
|
- latest
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: build
|
|
env:
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
run: |
|
|
./build.py
|