Skip to content

Commit

Permalink
fix: Pyro version update
Browse files Browse the repository at this point in the history
* fix: Pyro version update (#161)
* feat: Indent level support added for while/endwhile (#156) @webspam
* build(deps): bump Newtonsoft.Json (#158)
  • Loading branch information
joelday authored Dec 19, 2022
1 parent fa36170 commit f3b8bea
Show file tree
Hide file tree
Showing 36 changed files with 13,371 additions and 10,753 deletions.
18 changes: 18 additions & 0 deletions .config/dotnet-tools.json
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"
]
}
}
}
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
title: ""
labels: bug
assignees: joelday

---

**Describe the bug**
Expand Down
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
title: ""
labels: enhancement
assignees: ''

assignees: joelday
---

**Is your feature request related to a problem? Please describe.**
Expand Down
62 changes: 62 additions & 0 deletions .github/workflows/build.yml
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
106 changes: 0 additions & 106 deletions .github/workflows/push-develop.yml

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/push-master.yml

This file was deleted.

Loading

0 comments on commit f3b8bea

Please sign in to comment.