3 0 0 npm inside springboot #11
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: Docker Togh CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build Spring backoffice Togh Docker image | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build backoffice | |
run: mvn package | |
- name: Build backoffice Docker image | |
run: docker build . --file Dockerfile --tag pierreyvesmonnet/togh:1.0.0 |