Skip to content

Commit

Permalink
Create deploy_docker_dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gnmyt committed Aug 21, 2024
1 parent da760f3 commit eb9db93
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/deploy_docker_dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Deploy Development Release to DockerHub

on:
push:
branches: [ "development" ]

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all

- name: Set up Docker Build
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
platforms: linux/amd64
tags: germannewsmaker/nexterm:development

0 comments on commit eb9db93

Please sign in to comment.