Skip to content

Commit

Permalink
fix yaml example (#16)
Browse files Browse the repository at this point in the history
* Update azure-pipelines.yml for Azure Pipelines

* Update azure-pipelines.yml for Azure Pipelines

* Update azure-pipelines.yml for Azure Pipelines

* Update azure-pipelines.yml for Azure Pipelines

* Update azure-pipelines.yml for Azure Pipelines

* Update azure-pipelines.yml for Azure Pipelines

* update tests

* initial devcontainer push

* tlstestgate works

* Update azure-pipelines.yml for Azure Pipelines

* fix windows unit test

* Set up CI with Azure Pipelines

[skip ci]

* Update azure-pipelines.yml for Azure Pipelines

* update dependencies and fix test

* fix ci tests

* fix ci

* remove is-ip as a dependency

* remove temp file

* add eslint

* update changelog

* fix pipeline

* fix ci

* fix ci

* Set up CI with Azure Pipelines

[skip ci]

* add sample pipeline

* fix yaml example
  • Loading branch information
gattjoe committed Apr 18, 2022
1 parent 962391b commit 046c359
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,7 @@
- Added eslint to project and pipelines
- Updated SSLyze to 5.0.3 for Python 3.10 support
- Removed is-Ip TypeScript dependency
- Fixed test case that purposely failed resolving bbbbbbbbbbbbbbbbbbbbbbbbb.com because someone out there is now using it
- Fixed test case that purposely failed resolving bbbbbbbbbbbbbbbbbbbbbbbbb.com because someone out there is now using it

# v1.0.11
- Fix yaml example on Visual Studio marketplace
10 changes: 5 additions & 5 deletions overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ Below is sample YAML to insert into your build or release pipeline.

```
steps:
- task: JoeGatt.TlsTestGate.custom-build-release-task.TlsTestGate@1
- task: TlsTestGate@1
displayName: 'github.com SSL/TLS Test Gate'
inputs:
baseURL: github.com
port: 443
dnsserver: 8.8.8.8
decision: true
baseURL: 'github.com'
dnsserver: 8.8.8.8
port: 443
failBuild: false
```

## Results
Expand Down
16 changes: 16 additions & 0 deletions sample-pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Example yaml pipeline

trigger:
- master

pool:
vmImage: ubuntu-latest

steps:
- task: TlsTestGate@1
displayName: 'github.com SSL/TLS Test Gate'
inputs:
baseURL: 'github.com'
dnsserver: 8.8.8.8
port: 443
failBuild: false

0 comments on commit 046c359

Please sign in to comment.