mirror of
https://github.com/stryan/mumble-discord-bridge.git
synced 2024-11-23 05:45:41 -05:00
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
|
name: 'Docker'
|
||
|
on:
|
||
|
create:
|
||
|
tags:
|
||
|
- v*
|
||
|
|
||
|
jobs:
|
||
|
docker-build-push:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v1
|
||
|
|
||
|
- name: Log in to Docker Hub
|
||
|
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
|
||
|
if: startsWith(github.ref, 'refs/tags/')
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||
|
|
||
|
- name: Login to GitHub Container Registry
|
||
|
uses: docker/login-action@v1
|
||
|
with:
|
||
|
registry: ghcr.io
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|
||
|
- name: Build and push
|
||
|
uses: docker/build-push-action@v2
|
||
|
with:
|
||
|
context: .
|
||
|
push: true
|
||
|
tags: stieneee/mumble-discord-bridge:latest,stieneee/mumble-discord-bridge:${{ github.ref_name }},ghcr.io/stieneee/mumble-discord-bridge:latest,ghcr.io/stieneee/mumble-discord-bridge:${{ github.ref_name }}
|