mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-04-12 12:06:29 +00:00
added jenkins workflow back in
This commit is contained in:
parent
9fd1a23019
commit
2afd9e65ce
1 changed files with 22 additions and 0 deletions
22
.github/workflows/main.yml
vendored
Normal file
22
.github/workflows/main.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: Build Non-Release Branch
|
||||
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- feature/*
|
||||
- bugfix/*
|
||||
- hotfix/*
|
||||
- release/*
|
||||
- development
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- run: Invoke-WebRequest -URI "http://localhost:8080/job/PepperDash%20Core%20Branch%20Builds/build?token=$($Env:projectToken)" -Headers @{Authorization = "Basic $([System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("ndorin:$($Env:token)")))"} -Method POST -UseBasicParsing
|
||||
env:
|
||||
token: ${{ secrets.TOKEN }}
|
||||
projectToken: ${{ secrets.PROJECTTOKEN}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue