2019-11-28 15:24:15 +03:00
|
|
|
name: docker
|
2019-11-28 13:32:35 +03:00
|
|
|
|
2020-02-17 19:32:46 +03:00
|
|
|
on:
|
|
|
|
push:
|
2021-09-01 20:50:53 +03:00
|
|
|
branches-ignore:
|
|
|
|
- 'renovate/*'
|
|
|
|
- 'dependabot/*'
|
|
|
|
tags:
|
|
|
|
- '*'
|
2021-04-12 16:44:07 +03:00
|
|
|
branches:
|
|
|
|
- master
|
2019-11-28 13:32:35 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-12-14 11:44:17 +03:00
|
|
|
runs-on: ubuntu-20.04
|
2020-04-14 15:06:41 +03:00
|
|
|
timeout-minutes: 10
|
2019-11-28 13:32:35 +03:00
|
|
|
|
|
|
|
steps:
|
2019-11-28 13:35:27 +03:00
|
|
|
- uses: actions/checkout@master
|
2020-04-14 15:06:41 +03:00
|
|
|
|
2019-11-28 13:43:11 +03:00
|
|
|
- name: docker publish
|
2019-11-28 13:35:27 +03:00
|
|
|
uses: elgohr/Publish-Docker-Github-Action@master
|
2019-11-28 13:32:35 +03:00
|
|
|
with:
|
2019-11-28 13:39:18 +03:00
|
|
|
name: minetestmapserver/mapserver
|
2019-11-28 13:32:35 +03:00
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2019-11-28 15:19:42 +03:00
|
|
|
tag_names: true
|
2019-11-28 15:24:15 +03:00
|
|
|
cache: true
|