Skip to content

Update dotnet-test.yml, deployment test #46

Update dotnet-test.yml, deployment test

Update dotnet-test.yml, deployment test #46

Workflow file for this run

name: dotnet package
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Test with dotnet
run: dotnet test --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}"
- name: Upload dotnet test results
uses: actions/upload-artifact@v3
with:
name: dotnet-results-${{ matrix.dotnet-version }}
path: TestResults-${{ matrix.dotnet-version }}
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secret.SSH_KEY }}

Check failure on line 41 in .github/workflows/dotnet-test.yml

View workflow run for this annotation

GitHub Actions / dotnet package

Invalid workflow file

The workflow is not valid. .github/workflows/dotnet-test.yml (Line: 41, Col: 26): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.SSH_KEY .github/workflows/dotnet-test.yml (Line: 44, Col: 12): Unrecognized named-value: 'secret'. Located at position 1 within expression: secret.SSH_USERNAME
- name: SSH to machine and deploy
run: |
ssh ${{ secret.SSH_USERNAME }}@${{ secret.SSH_IP }} "cd $ && touch test"