Skip to content

Commit ce2db6d

Browse files
committed
Add Github Actions workflows.
1 parent 475fbfc commit ce2db6d

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build, test, deploy recipe
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- develop
8+
9+
jobs:
10+
build-test-deployrecipe:
11+
uses: shredeagle/reusable-workflows/.github/workflows/main_build.yml@develop
12+
with:
13+
deployrecipe_user: adnn
14+
secrets:
15+
SHREDROBOT_GITHUB_TOKEN: ${{ secrets.SHREDROBOT_GITHUB_TOKEN }}
16+
ACTION_CACHENAME: ${{ secrets.ACTION_CACHENAME }}
17+
CONAN_USER_NAME: ${{ secrets.CONAN_USER_NAME }}
18+
CONAN_USER_PASSWORD: ${{ secrets.CONAN_USER_PASSWORD }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Topical build-test
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- topic/**
8+
- fix/**
9+
10+
jobs:
11+
build-test:
12+
uses: shredeagle/reusable-workflows/.github/workflows/main_build.yml@develop
13+
secrets:
14+
SHREDROBOT_GITHUB_TOKEN: ${{ secrets.SHREDROBOT_GITHUB_TOKEN }}
15+
ACTION_CACHENAME: ${{ secrets.ACTION_CACHENAME }}
16+
CONAN_USER_NAME: ${{ secrets.CONAN_USER_NAME }}
17+
CONAN_USER_PASSWORD: ${{ secrets.CONAN_USER_PASSWORD }}

0 commit comments

Comments
 (0)