-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Pyro version update (#161) * feat: Indent level support added for while/endwhile (#156) @webspam * build(deps): bump Newtonsoft.Json (#158)
- Loading branch information
Showing
36 changed files
with
13,371 additions
and
10,753 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": 1, | ||
"isRoot": true, | ||
"tools": { | ||
"cake.tool": { | ||
"version": "3.0.0", | ||
"commands": [ | ||
"dotnet-cake" | ||
] | ||
}, | ||
"gitversion.tool": { | ||
"version": "5.11.1", | ||
"commands": [ | ||
"dotnet-gitversion" | ||
] | ||
} | ||
} | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: "Build" | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
env: | ||
PRERELEASE: ${{ github.ref == 'refs/heads/develop' }} | ||
RELEASE: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' }} | ||
CAKE_SETTINGS_ENABLESCRIPTCACHE: true | ||
|
||
steps: | ||
- name: Checkout | ||
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop') | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.GH_TOKEN != '' && secrets.GH_TOKEN || secrets.GITHUB_TOKEN }} | ||
|
||
- name: git config | ||
run: | | ||
git config user.name "Cicero[bot]" | ||
git config user.email "that-annoying-poser-jester-guy@users.noreply.github.com" | ||
- name: Cache nuget packages | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-nuget-${{ hashFiles('src/*/*.csproj') }} | ||
restore-keys: | | ||
${{ runner.os }}-nuget- | ||
- name: Cache dotnet tools | ||
uses: actions/cache@v3 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-dotnet-tools-${{ hashFiles('build.cake', '.config/dotnet-tools.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-dotnet-tools- | ||
- name: Setup Nuget.exe | ||
if: success() | ||
uses: nuget/setup-nuget@v1 | ||
|
||
- name: Build | ||
if: success() | ||
uses: ecampidoglio/cake-action@v1 | ||
with: | ||
target: default | ||
|
||
- name: Publish Extension | ||
if: success() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
VSCE_PAT: ${{ secrets.VSCE_TOKEN }} | ||
uses: ecampidoglio/cake-action@v1 | ||
with: | ||
target: publish |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.