Skip to content

Commit

Permalink
Merge branch 'feature/elasticsearch' of github.com:Ilhasoft/bothub-en…
Browse files Browse the repository at this point in the history
…gine into feature/elasticsearch
  • Loading branch information
helllllllder committed Aug 19, 2021
2 parents 5df119a + 3560450 commit 67bb042
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build-develop.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Develop Image
on:
push:
tags:
- 'develop-v*.*.*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Set output
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: bothubit/bothub-engine:${{ steps.vars.outputs.tag }}

0 comments on commit 67bb042

Please sign in to comment.