mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2025-01-26 17:24:44 +01:00
20 lines
376 B
YAML
20 lines
376 B
YAML
|
name: Docker build & push
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
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 --push-tags
|