-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 796 Bytes
/
PullRequest.yml
File metadata and controls
31 lines (26 loc) · 796 Bytes
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
name: Pull Request
on: pull_request
permissions:
contents: read
env:
DOTNET_NOLOGO: true
jobs:
build_and_test:
name: Build and Test
uses: ./.github/workflows/reusable-build-test.yml
with:
version: ${{ github.run_number }}.0.0-alpha
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
build_docker:
name: Build Docker Image
needs: build_and_test
uses: ./.github/workflows/reusable-docker.yml
with:
dockerfile_path: ./code/WorldDomination.SimpleObservability.Dashboard/Dockerfile
registry: ghcr.io
registry_username: ${{ github.repository_owner }}
image_name: ${{ github.repository_owner }}/dashboard
push: false
secrets:
registry_password: ${{ secrets.GITHUB_TOKEN }}