-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (57 loc) · 1.67 KB
/
dev-workflow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Dev-Workflow
on:
push:
branches:
- dev
jobs:
build_and_test:
name: build_and_test
runs-on: ubuntu-20.04
steps:
- name: Get sources
uses: actions/checkout@v1
- name: Install .net core 3.1
uses: actions/setup-dotnet@v2
with:
dotnet-version: '3.1.x'
- name: Build project
uses: cake-build/cake-action@v1
env:
EXPECTED_VERBOSITY: Diagnostic
with:
script-path: recipe.cake
target: ReleaseBuildAll
verbosity: Normal
cake-version: 2.2.0
cake-bootstrap: true
- name: Run unit tests
uses: cake-build/cake-action@v1
env:
EXPECTED_VERBOSITY: Diagnostic
with:
script-path: recipe.cake
target: Test
verbosity: Normal
cake-version: 2.2.0
cake-bootstrap: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build front-end and push to hub
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/swkb-front:dev
file: StarWarsKb.Front/Dockerfile
- name: Build back-end and push to hub
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/swkb-back:dev
file: StarWarsKb.Back/Dockerfile