-
-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (37 loc) · 1.26 KB
/
snapshot.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
name: Build Snapshot
on:
push:
branches:
- 'development'
jobs:
##########################################################################################
# Module Tests
##########################################################################################
tests:
secrets: inherit
uses: ./.github/workflows/tests.yml
##########################################################################################
# Format Source Code
##########################################################################################
format:
name: Code Auto-Formatting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Auto-format
uses: Ortus-Solutions/[email protected]
with:
cmd: run-script format
- name: Commit Format Changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply cfformat changes
##########################################################################################
# Release it
##########################################################################################
release:
uses: ./.github/workflows/release.yml
needs: [ tests, format ]
secrets: inherit
with:
snapshot: true