Skip to content

Commit

Permalink
Merge pull request #14 from rusq/dockerhub
Browse files Browse the repository at this point in the history
Dickerhub
  • Loading branch information
rusq authored Jul 9, 2024
2 parents 7fc0bd3 + a0312b8 commit 55a0ae7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: dickerhub

on:
release:
types:
- published

jobs:
push_to_dockerhub:
name: Push image to dockerhub
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: |
ffffuuu/aklapi:latest
ffffuuu/aklapi:${{ github.ref }}

0 comments on commit 55a0ae7

Please sign in to comment.