Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions gitapp/.github/workfows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: PipelineWorkflow

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
name: Azure Pipeline
runs-on: ubuntu-latest
steps:
- name: Azure Pipelines Action
uses: Azure/pipelines@v1
with:
azure-devops-project-url: https://dev.azure.com/ravish142000/kmjnhbvfc
azure-pipeline-name: 'pipelines-dotnet-core.git'
azure-devops-token: ${{ secrets.AZURE_DEVOPS_TOKEN }}
9 changes: 8 additions & 1 deletion gitapp/gitapp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@
</PropertyGroup>

<ItemGroup>
<None Include=".github\workflows\workflow.yml" />
<Compile Remove=".github\workflows\**" />
<Content Remove=".github\workflows\**" />
<EmbeddedResource Remove=".github\workflows\**" />
<None Remove=".github\workflows\**" />
</ItemGroup>

<ItemGroup>
<None Include=".github\workfows\workflow.yml" />
</ItemGroup>

</Project>