mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-11 09:23:04 +00:00
Switch to manual Docker builds
This commit is contained in:
22
.github/workflows/CD-Docker.yml
vendored
Normal file
22
.github/workflows/CD-Docker.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: CD (Docker)
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.3.3
|
||||
|
||||
- name: Build
|
||||
run: docker build -t tyrrrz/discordchatexporter:${{ github.ref }} -t tyrrrz/discordchatexporter:stable .
|
||||
|
||||
- name: Deploy
|
||||
run: |
|
||||
docker push tyrrrz/discordchatexporter:${{ github.ref }}
|
||||
docker push tyrrrz/discordchatexporter:stable
|
||||
Reference in New Issue
Block a user