1
0
forked from MTSR/mapserver
mapserver/.github/workflows/docker.yml

26 lines
483 B
YAML
Raw Normal View History

2019-11-28 15:24:15 +03:00
name: docker
2019-11-28 13:32:35 +03:00
on:
push:
2021-01-05 15:40:58 +03:00
branches-ignore:
- 'dependabot/*'
tags:
- '*'
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