forked from tidbyt/community
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (43 loc) · 1.25 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
name: Build and Release
on:
push:
branches:
- main
tags:
- "v*"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup build agent
run: ./.github/scripts/setup.sh
- name: Setup auth
run: ./.github/scripts/setup-auth.sh
env:
COMMUNITY_PIXLET_AUTH: "${{ secrets.COMMUNITY_PIXLET_AUTH }}"
- name: Find last successful build
id: lastsuccess
uses: SamhammerAG/last-successful-build-action@v4
with:
branch: "main"
workflow: "Build and Release"
verify: true
token: "${{ secrets.TIDBYT_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 }}"
- name: Deploy modified apps
run: ./.github/scripts/deploy-apps.sh
env:
VERSION: ${{ github.sha }}
TARGETS: "${{ steps.targets.outputs.targets }}"