-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (34 loc) · 921 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Build and Test
on:
push:
branches:
- main
tags:
- "v*"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup build agent
run: ./.github/scripts/setup.sh
- name: Find last successful build
id: lastsuccess
uses: SamhammerAG/last-successful-build-action@v7
with:
branch: "main"
workflow: "Build and Release"
verify: true
token: "${{ secrets.GITHUB_TOKEN }}"
- name: Determine targets
id: targets
run: ./.github/scripts/determine-targets.sh
env:
BASE_SHA: ${{ steps.lastsuccess.outputs.sha }}
HEAD_SHA: ${{ github.sha }}
- name: Check modified apps
run: ./.github/scripts/check-apps.sh
env:
TARGETS: "${{ steps.targets.outputs.targets }}"