DiscordChatExporter/.github/workflows/CI-Docker.yml

23 lines
437 B
YAML
Raw Normal View History

2021-07-26 11:02:44 -04:00
name: Docker CI
2021-07-26 10:53:49 -04:00
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.3
2021-07-26 11:02:44 -04:00
- name: Login
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
2021-07-26 10:53:49 -04:00
- name: Build
run: docker build -t tyrrrz/discordchatexporter:latest .
2021-09-28 13:40:48 -04:00
- name: Deploy (latest)
2021-07-26 10:53:49 -04:00
run: docker push tyrrrz/discordchatexporter:latest