Skip to content

Commit

Permalink
Add deploy to build and deploy docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben69695 committed Jan 2, 2023
1 parent 2d1bad3 commit 08d8c40
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: ci

on:
push:
branches:
- "main"

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: true
tags: |
ruben69695/ptokax:latest
ruben69695/ptokax:0.5.3
ghcr.io/ruben69695/ptokax:latest
ghcr.io/ruben69695/ptokax:0.5.3

0 comments on commit 08d8c40

Please sign in to comment.