created github action for building docker images #7
This file contains hidden or 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 Image CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Server Docker Image | |
| run: docker build src --file src/PodLoad.Server/Dockerfile --tag podload-server:$(date +%s) | |
| - name: Build Client Docker Image | |
| run: docker build src --file src/PodLoad.Client/Dockerfile --tag podload-client:$(date +%s) |