mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-01 15:49:11 +00:00
23 lines
428 B
YAML
23 lines
428 B
YAML
name: Docker CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.3
|
|
|
|
- name: Login
|
|
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Build
|
|
run: docker build -t tyrrrz/discordchatexporter:latest .
|
|
|
|
- name: Deploy
|
|
run: docker push tyrrrz/discordchatexporter:latest |