Skip to content

Commit

Permalink
ci: refactored actions config
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI committed Jun 25, 2024
1 parent e46b105 commit 5b5dfbb
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 61 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/docker-build-only.yml

This file was deleted.

36 changes: 0 additions & 36 deletions .github/workflows/docker-build-push.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Docker Image CI

on:
push:
branches:
- 'main'
- 'master'
- 'trunk'
tags:
- 'v*'
pull_request:
branches:
- 'main'
- 'master'
- 'trunk'
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ vars.DOCKERHUB_TEMPLATE }}

- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}, ${{ vars.DOCKERHUB_TEMPLATE }}:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 5b5dfbb

Please sign in to comment.