Skip to content

Commit

Permalink
More build pipeline work.
Browse files Browse the repository at this point in the history
  • Loading branch information
joelday committed Nov 28, 2022
1 parent ae47869 commit 091af53
Show file tree
Hide file tree
Showing 11 changed files with 17,346 additions and 384 deletions.
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
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: "Build"

on:
push:
tags-ignore:
- "v*"
on: push

jobs:
build:
Expand All @@ -25,6 +22,13 @@ jobs:

- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 0

- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Setup Nuget.exe
if: success()
Expand Down
6 changes: 5 additions & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
mode: ContinuousDeployment
branches: {}
branches:
main:
increment: Minor
develop:
increment: Patch
ignore:
sha: []
merge-message-formats: {}
Loading

0 comments on commit 091af53

Please sign in to comment.