Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: chrispat/multi-ci-test
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2
Choose a base ref
...
head repository: chrispat/multi-ci-test
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 7 commits
  • 3 files changed
  • 1 contributor

Commits on Apr 27, 2021

  1. Update release.yml

    chrispat authored Apr 27, 2021
    Copy the full SHA
    1cece52 View commit details
  2. Update release.yml

    chrispat authored Apr 27, 2021
    Copy the full SHA
    55afb4e View commit details

Commits on Jun 2, 2021

  1. Copy the full SHA
    759e8ca View commit details
  2. Copy the full SHA
    dfac89f View commit details
  3. Copy the full SHA
    e3107de View commit details
  4. Copy the full SHA
    67e84b3 View commit details

Commits on Jul 20, 2022

  1. Update dotnetcore.yml

    chrispat authored Jul 20, 2022
    Copy the full SHA
    fba5240 View commit details
Showing with 22 additions and 4 deletions.
  1. +2 −0 .github/workflows/dotnetcore.yml
  2. +5 −2 .github/workflows/release.yml
  3. +15 −2 azure-pipelines-1.yml
2 changes: 2 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: .NET Core. CI 1

foo: test

on:
push:
branches: [ master ]
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -6,7 +6,10 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the master branch
release:
types: [prereleased, released]
types:
- published
- prereleased
- released
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

@@ -21,7 +24,7 @@ jobs:
steps:

# Runs a single command using the runners shell
- name: Run a one-line script
- name: Release even type ${{ github.event.action }}
run: echo $payload
env:
payload: ${{ toJson(github.event) }}
17 changes: 15 additions & 2 deletions azure-pipelines-1.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ASP.NET Core

# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
@@ -13,5 +14,17 @@ variables:
buildConfiguration: 'Release'

steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
- task: AzurePowerShell@5
inputs:
azureSubscription: 'azure-pipeline-pm(5e811388-da36-4a22-b49b-e3477f384ec3)'
ScriptType: 'InlineScript'
Inline: |
gci env:\
azurePowerShellVersion: 'LatestVersion'
- task: AzureCLI@2
inputs:
azureSubscription: 'azure-pipeline-pm(5e811388-da36-4a22-b49b-e3477f384ec3)'
scriptType: 'bash'
scriptLocation: 'inlineScript'
inlineScript: 'env'