Skip to content

Commit

Permalink
Updated the pipelines to release on push. Minor fix to the index.md t…
Browse files Browse the repository at this point in the history
…o fix the render of the sample output.
  • Loading branch information
abdulkareem-siddiq committed Sep 8, 2021
1 parent c50ef21 commit 148a320
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
15 changes: 15 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,18 @@ steps:
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg;build/*.nupkg;!build/*symbols.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'sqs-nuget'

- task: GitHubRelease@1
inputs:
gitHubConnection: 'github-packages-sqs'
repositoryName: 'SiddiqSoft/SplitUri'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: '$(build.buildNumber)'
title: 'v$(build.buildNumber)'
releaseNotesSource: 'inline'
isPreRelease: true
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'commitBased'
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
12 changes: 7 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,12 @@ Variable | Description
### Signature

```cpp
enum class UriScheme
{
WebHttp, WebHttps, Ldap, Mailto, News, Tel, Telnet, Urn, Unknown
};
enum class UriScheme
{
WebHttp, WebHttps,
Ldap, Mailto, News, Tel, Telnet, Urn, // Not supported
Unknown
};
```
<hr/>
Expand Down Expand Up @@ -238,7 +240,7 @@ std::cerr << std::format("{}", u) << std::endl;
And the corresponding output
```json
```
www.google.com
443
/search?flag&q=siddiqsoft#v1
Expand Down

0 comments on commit 148a320

Please sign in to comment.