Azure Pipelines yaml config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resources: | |
- repo: self | |
queue: | |
name: Hosted Windows Container | |
#Your build pipeline references a secret variable named ‘GithubKey’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab, and then select the option to make it secret. See https://go.microsoft.com/fwlink/?linkid=865972 | |
#Your build pipeline references an undefined variable named ‘BlogUrl’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972 | |
steps: | |
- powershell: ./'Invoke-PagesBuild.ps1' | |
arguments: '$(GithubKey)' | |
failOnStderr: true | |
displayName: 'Trigger Github Pages Build' | |
- task: petergroenewegen.PeterGroenewegen-Xpirit-Vsts-Release-Twitter.Xpirit-Vsts-Release-Twitter.Twitter@1 | |
displayName: 'Twitter task' | |
inputs: | |
TwitterEndPoint: 'Steviecoaster_Twitter' | |
Message: 'New blog post just out! Check it out at $(BlogUrl)' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment