Skip to content

removed scripts folder from dockerfile #191

removed scripts folder from dockerfile

removed scripts folder from dockerfile #191

name: Build and publish Docker image
on:
# Trigger the workflow on push or pull request,
# for the develop branch and all new tags
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Extract commit hash
shell: bash
run: echo "##[set-output name=hash;]$(git rev-parse --short ${GITHUB_SHA})"
id: extract_hash
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
env:
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }}
GIT_REVISION: ${{ steps.extract_hash.outputs.hash }}
GIT_TAG: ${{ env.RELEASE_VERSION }}
with:
name: impresso/impresso-middle-layer
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
buildargs: GIT_BRANCH,GIT_REVISION,GIT_TAG
tags: "latest"