File tree Expand file tree Collapse file tree 3 files changed +52
-0
lines changed
Expand file tree Collapse file tree 3 files changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ # These are supported funding model platforms
2+
3+ github : # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+ FriedrichWeinmann
5+ patreon : # Replace with a single Patreon username
6+ open_collective : # Replace with a single Open Collective username
7+ ko_fi : # Replace with a single Ko-fi username
8+ tidelift : # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
9+ community_bridge : # Replace with a single Community Bridge project-name e.g., cloud-foundry
10+ liberapay : # Replace with a single Liberapay username
11+ issuehunt : # Replace with a single IssueHunt username
12+ otechie : # Replace with a single Otechie username
13+ custom : # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches :
4+ - master
5+ - main
6+
7+ jobs :
8+ build :
9+
10+ runs-on : windows-latest
11+
12+ steps :
13+ - uses : actions/checkout@v1
14+ - name : Install Prerequisites
15+ run : .\build\vsts-prerequisites.ps1
16+ shell : powershell
17+ - name : Validate
18+ run : .\build\vsts-validate.ps1
19+ shell : powershell
20+ - name : Build
21+ run : .\build\vsts-build.ps1 -ApiKey $env:APIKEY
22+ shell : powershell
23+ env :
24+ APIKEY : ${{ secrets.ApiKey }}
Original file line number Diff line number Diff line change 1+ on : [pull_request]
2+
3+ jobs :
4+ validate :
5+
6+ runs-on : windows-latest
7+
8+ steps :
9+ - uses : actions/checkout@v1
10+ - name : Install Prerequisites
11+ run : .\build\vsts-prerequisites.ps1
12+ shell : powershell
13+ - name : Validate
14+ run : .\build\vsts-validate.ps1
15+ shell : powershell
You can’t perform that action at this time.
0 commit comments