Skip to content

closes #643

closes #643 #235

Workflow file for this run

name: .NET Release version
on:
push:
tags:
- 'v*.*.*'
paths-ignore:
- '**.md'
- '.github/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: mirromutth/mysql-action@v1.1
with:
host port: 3306 # Optional, default value is 3306. The port of host
container port: 3306 # Optional, default value is 3306. The port of container
character set server: 'utf8' # Optional, default value is 'utf8mb4'. The '--character-set-server' option for mysqld
collation server: 'utf8_general_ci' # Optional, default value is 'utf8mb4_general_ci'. The '--collation-server' option for mysqld
mysql version: '8.0' # Optional, default value is "latest". The version of the MySQL
mysql database: 'some_test' # Optional, default value is "test". The specified database which will be create
mysql root password: 'secretpassword'
mysql user: 'developer' # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too
mysql password: 'password' # Required if "mysql user" exists. The password for the "mysql user"
- uses: getong/rabbitmq-action@v1.2
with:
rabbitmq version: '3.8.2-management-alpine'
host port: 5672
rabbitmq user: 'admin'
rabbitmq password: 'password'
rabbitmq vhost: 'vhost_name'
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3 | cut -d "v" -f 2)
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Unit Tests
run: dotnet test --no-restore -c Release -v n Microting.eFormMonitoringBase.Unit.Tests/Microting.eFormMonitoringBase.Unit.Tests.csproj
- name: Integration Tests
run: dotnet test --no-restore -c Release -v n Microting.eFormMonitoringBase.Integration.Tests/Microting.eFormMonitoringBase.Integration.Tests.csproj
- name: Pack
run: dotnet pack Microting.EformMonitoringBase.sln -c Release -o ./artifacts -p:PackageVersion=${{ steps.get_version.outputs.VERSION }}
- name: Push generated package to GitHub registry
run: dotnet nuget push /home/runner/work/eform-monitoring-base/eform-monitoring-base/artifacts/Microting.EformMonitoringBase.${{ steps.get_version.outputs.VERSION }}.nupkg -k ${{secrets.NUGET_SECRET_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols
- name: Notify slack fail
if: ${{ failure() }}
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
message_id: ${{ steps.slack.outputs.message_id }}
channel_id: C018LS2S7T3
status: FAILED
color: danger