mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-07 03:07:24 +01:00
16 lines
418 B
YAML
16 lines
418 B
YAML
|
name: Docker build & push
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: master
|
||
|
|
||
|
jobs:
|
||
|
docker-description:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: description
|
||
|
run: |
|
||
|
DOCKERHUB_USERNAME=$DOCKER_USERNAME DOCKERHUB_PASSWORD=$DOCKER_PASSWORD DOCKERHUB_REPOSITORY='factoriotools/factorio' README_FILEPATH='./README.md' ./update-dockerhub-description.sh
|