Skip to content

Commit

Permalink
Create dev-2311
Browse files Browse the repository at this point in the history
  • Loading branch information
PTKu authored Jan 31, 2024
1 parent 1b16d57 commit f312b8b
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/dev-2311
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: dev-2311

on:
push:
branches: [ "dev-2311" ]
paths:
- 'src/**'
- 'cake/**'
- '.github/**'
workflow_dispatch:

jobs:
build:
strategy:
matrix:
configuration: [Release]

runs-on: [self-hosted, Windows, X64, L2] # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: '0'

- name: "Build script"
run: dotnet build cake/Build.csproj

- name: "Run build script"
env:
GH_TOKEN : ${{ secrets.GH_TOKEN }}
GH_USER : ${{ secrets.GH_USER }}
run: dotnet run --project cake/Build.csproj --do-pack --do-publish --do-publish-release

0 comments on commit f312b8b

Please sign in to comment.