mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Authenticate Docker jobs
This commit is contained in:
parent
89b1f9924b
commit
a449c02dd5
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:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -13,6 +13,9 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2.3.3
|
uses: actions/checkout@v2.3.3
|
||||||
|
|
||||||
|
- name: Login
|
||||||
|
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: docker build -t tyrrrz/discordchatexporter:${{ github.ref }} -t tyrrrz/discordchatexporter:stable .
|
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:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -13,6 +13,9 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2.3.3
|
uses: actions/checkout@v2.3.3
|
||||||
|
|
||||||
|
- name: Login
|
||||||
|
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: docker build -t tyrrrz/discordchatexporter:latest .
|
run: docker build -t tyrrrz/discordchatexporter:latest .
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue