mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
Consolidate some docker jobs
This commit is contained in:
parent
65e0a63bda
commit
19cdf47c6e
37
.github/workflows/docker.yml
vendored
37
.github/workflows/docker.yml
vendored
|
|
@ -3,6 +3,8 @@ name: docker
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
# Outputs from this job aren't really used, but it's here to verify that
|
||||||
|
# the Dockerfile builds correctly on pull requests.
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
|
@ -30,8 +32,9 @@ jobs:
|
||||||
name: DiscordChatExporter.Cli.Docker
|
name: DiscordChatExporter.Cli.Docker
|
||||||
path: DiscordChatExporter.Cli.Docker.tar
|
path: DiscordChatExporter.Cli.Docker.tar
|
||||||
|
|
||||||
deploy-latest:
|
deploy:
|
||||||
if: ${{ github.event_name == 'push' && github.ref_type == 'branch' && github.ref_name == 'master' }}
|
# Deploy to DockerHub only on tag push or master branch push
|
||||||
|
if: ${{ github.event_name == 'push' && (github.ref_type == 'tag' || github.ref_type == 'branch' && github.ref_name == 'master') }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
@ -55,32 +58,6 @@ jobs:
|
||||||
--platform linux/amd64,linux/arm64
|
--platform linux/amd64,linux/arm64
|
||||||
--push
|
--push
|
||||||
--tag tyrrrz/discordchatexporter:latest
|
--tag tyrrrz/discordchatexporter:latest
|
||||||
.
|
${{ github.ref_type == 'tag' && '--tag tyrrrz/discordchatexporter:$GITHUB_REF_NAME' || '' }}
|
||||||
|
${{ github.ref_type == 'tag' && '--tag tyrrrz/discordchatexporter:stable' || '' }}
|
||||||
deploy-stable:
|
|
||||||
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # 4.1.0
|
|
||||||
|
|
||||||
- name: Install Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # 3.0.0
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
run: >
|
|
||||||
echo ${{ secrets.DOCKER_TOKEN }} |
|
|
||||||
docker login --username tyrrrz --password-stdin
|
|
||||||
|
|
||||||
- name: Build & push image
|
|
||||||
run: >
|
|
||||||
docker buildx build
|
|
||||||
--file DiscordChatExporter.Cli.dockerfile
|
|
||||||
--platform linux/amd64,linux/arm64
|
|
||||||
--push
|
|
||||||
--tag tyrrrz/discordchatexporter:stable
|
|
||||||
--tag tyrrrz/discordchatexporter:${{ github.ref_name }}
|
|
||||||
.
|
.
|
||||||
Loading…
Reference in a new issue