Skip to content

DEP: Bump geekyeggo/delete-artifact from 5 to 6 #15

DEP: Bump geekyeggo/delete-artifact from 5 to 6

DEP: Bump geekyeggo/delete-artifact from 5 to 6 #15

Workflow file for this run

name: Test / MQTT Plugin
on:
workflow_dispatch:
pull_request:
types:
- opened
- synchronize
- edited
- ready_for_review
branches:
- master
jobs:
build:
name: MQTT Plugin / Build
runs-on: windows-2022
steps:
- name: Git Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Nuget
run: |
nuget restore
shell: cmd
- name: Build
run: |
build_git.bat < nul
working-directory: ${{ github.workspace }}\scripts
shell: cmd
- name: Upload Artifact / Plugin
uses: actions/upload-artifact@v7
if: ${{ success() }}
with:
name: MQTTPlugin
path: |
${{ github.workspace }}\MQTTPlugin\bin\Release\MQTTPlugin.dll
retention-days: 7
if-no-files-found: error
ci-status:
name: Build Status
runs-on: ubuntu-latest
needs:
- build
if: always()
steps:
- name: Success
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: Failure
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1