Merge pull request #473 from Sanket-0510/consortium_update #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish on merge to main | |
on: | |
push: | |
branches: | |
- main | |
env: | |
IMAGE_NAME: softwaremill/fablo | |
jobs: | |
publish-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Build Fablo | |
run: | | |
shellcheck --version | |
yamllint -v | |
npm install | |
./fablo-build.sh | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_LOGIN }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Publish Docker image | |
run: | | |
FABLO_VERSION=$(jq -r '.version' <"$GITHUB_WORKSPACE/package.json") | |
docker push softwaremill/fablo:"$FABLO_VERSION" |