Skip to content

Commit 397d5c4

Browse files
committed
workflows: try to use fully reusable approach
1 parent b63c85f commit 397d5c4

File tree

5 files changed

+29
-306
lines changed

5 files changed

+29
-306
lines changed

.github/workflows/builds-dev.yaml

Lines changed: 0 additions & 112 deletions
This file was deleted.

.github/workflows/builds-sdk.yaml

Lines changed: 0 additions & 111 deletions
This file was deleted.

.github/workflows/builds.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Builds
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
- dev
9+
- develop
10+
tags:
11+
- v*
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
dev:
19+
uses: ossia/actions/.github/workflows/builds-dev.yml@master
20+
secrets: inherit
21+
sdk:
22+
uses: ossia/actions/.github/workflows/builds-sdk.yml@master
23+
secrets: inherit
24+
jit:
25+
uses: ossia/actions/.github/workflows/jit.yml@master
26+
secrets: inherit
27+
release:
28+
uses: ossia/actions/.github/workflows/release.yml@master
29+
secrets: inherit

.github/workflows/jit.yml

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)