Skip to content

Commit

Permalink
buil
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathansant committed Oct 12, 2023
1 parent 31c1ba0 commit d5a4ddb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches:
- master
- '*.x'
- feature/*
paths-ignore:
- '**.md'

pull_request:
branches:
- master
- '*.x'
paths-ignore:
- '**.md'

jobs:
package:
name: Package
uses: jonathansant/.github/.github/workflows/dotnet-ci.yml@main
with:
dotnet-version: 7.0.x
publishable: ${{ contains(fromJSON('["develop", "master", "workflow", "feature/workflow"]'), github.ref_name) || endsWith(github.ref_name, '.x') }}
secrets:
nuget-auth-token: ${{ secrets.NUGET_KEY }}

0 comments on commit d5a4ddb

Please sign in to comment.