Skip to content

Commit

Permalink
Add workflow to build new develop image
Browse files Browse the repository at this point in the history
  • Loading branch information
psychomantys committed Aug 11, 2021
1 parent 4c9022d commit 73082e0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions 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 73082e0

Please sign in to comment.