Skip to content

Feature/netandnugets #125

Feature/netandnugets

Feature/netandnugets #125

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test Nbic.References.Tests/Nbic.References.Tests.csproj -- MaxCpuCount=1
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.ORG_DOCKER_USER }}
password: ${{ secrets.ORG_DOCKER_PASS }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image api
uses: docker/build-push-action@v5
# if: github.event.pull_request.merged == 'true' && ${{ github.actor != 'dependabot[bot]' }}
with:
context: ./src
file: ./Nbic.References/Dockerfile
tags: artsdatabanken/nbicreferences:latest
push: true