using cancalation token instead of thread.abort #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET8 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "NET8" ] | |
pull_request: | |
branches: [ "NET8" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore TeslaLoggerNET8.sln | |
- name: Build | |
run: dotnet build --no-restore TeslaLoggerNET8.sln | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Teslalogger | |
path: TeslaLogger/bin/Debug/net8.0/TeslaLogger.dll | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: bassmaster187 | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push Teslalogger | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
tags: bassmaster187/teslalogger:latest | |
- name: Build and push Webserver | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile-Webserver | |
push: true | |
tags: bassmaster187/teslalogger-webserver:latest | |
- name: Build and push Grafana | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile-Grafana | |
push: true | |
tags: bassmaster187/teslalogger-grafana:latest | |