mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-23 11:16:59 -04:00
Authenticate Docker jobs
This commit is contained in:
parent
89b1f9924b
commit
a449c02dd5
2 changed files with 8 additions and 2 deletions
5
.github/workflows/CD-Docker.yml
vendored
5
.github/workflows/CD-Docker.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: CD (Docker)
|
||||
name: Docker CD
|
||||
|
||||
on:
|
||||
push:
|
||||
|
@ -13,6 +13,9 @@ jobs:
|
|||
- 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:${{ github.ref }} -t tyrrrz/discordchatexporter:stable .
|
||||
|
||||
|
|
5
.github/workflows/CI-Docker.yml
vendored
5
.github/workflows/CI-Docker.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: CI (Docker)
|
||||
name: Docker CI
|
||||
|
||||
on:
|
||||
push:
|
||||
|
@ -13,6 +13,9 @@ jobs:
|
|||
- 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 .
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue