Skip to content

Commit f3b8bea

Browse files
authored
fix: Pyro version update
* fix: Pyro version update (#161) * feat: Indent level support added for while/endwhile (#156) @webspam * build(deps): bump Newtonsoft.Json (#158)
1 parent fa36170 commit f3b8bea

36 files changed

+13371
-10753
lines changed

.config/dotnet-tools.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"cake.tool": {
6+
"version": "3.0.0",
7+
"commands": [
8+
"dotnet-cake"
9+
]
10+
},
11+
"gitversion.tool": {
12+
"version": "5.11.1",
13+
"commands": [
14+
"dotnet-gitversion"
15+
]
16+
}
17+
}
18+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
4+
title: ""
55
labels: bug
66
assignees: joelday
7-
87
---
98

109
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
4+
title: ""
55
labels: enhancement
6-
assignees: ''
7-
6+
assignees: joelday
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/workflows/build.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: "Build"
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
build:
10+
runs-on: windows-latest
11+
env:
12+
PRERELEASE: ${{ github.ref == 'refs/heads/develop' }}
13+
RELEASE: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' }}
14+
CAKE_SETTINGS_ENABLESCRIPTCACHE: true
15+
16+
steps:
17+
- name: Checkout
18+
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
19+
uses: actions/checkout@v3
20+
with:
21+
fetch-depth: 0
22+
token: ${{ secrets.GH_TOKEN != '' && secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
23+
24+
- name: git config
25+
run: |
26+
git config user.name "Cicero[bot]"
27+
git config user.email "that-annoying-poser-jester-guy@users.noreply.github.com"
28+
29+
- name: Cache nuget packages
30+
uses: actions/cache@v3
31+
with:
32+
path: ~/.nuget/packages
33+
key: ${{ runner.os }}-nuget-${{ hashFiles('src/*/*.csproj') }}
34+
restore-keys: |
35+
${{ runner.os }}-nuget-
36+
37+
- name: Cache dotnet tools
38+
uses: actions/cache@v3
39+
with:
40+
path: tools
41+
key: ${{ runner.os }}-dotnet-tools-${{ hashFiles('build.cake', '.config/dotnet-tools.json') }}
42+
restore-keys: |
43+
${{ runner.os }}-dotnet-tools-
44+
45+
- name: Setup Nuget.exe
46+
if: success()
47+
uses: nuget/setup-nuget@v1
48+
49+
- name: Build
50+
if: success()
51+
uses: ecampidoglio/cake-action@v1
52+
with:
53+
target: default
54+
55+
- name: Publish Extension
56+
if: success() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
57+
env:
58+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
59+
VSCE_PAT: ${{ secrets.VSCE_TOKEN }}
60+
uses: ecampidoglio/cake-action@v1
61+
with:
62+
target: publish

.github/workflows/push-develop.yml

Lines changed: 0 additions & 106 deletions
This file was deleted.

.github/workflows/push-master.yml

Lines changed: 0 additions & 86 deletions
This file was deleted.

0 commit comments

Comments
 (0)