2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

Fix build workflow

This commit is contained in:
Oliver Walters 2021-04-10 22:44:37 +10:00
parent 5a168abbfe
commit 3da5505b58

View File

@ -6,11 +6,19 @@ on: ["push", "pull_request"]
jobs: jobs:
docker: inventree:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build Docker Image - name: Build Server Image
run: cd docker && docker build . --tag inventree:$(date +%s) run: cd docker/inventree && docker build . --tag inventree:$(date +%s)
nginx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build nginx Image
run: cd docker/nginx && docker build . --tag nxinx:$(date +%s)