-
Notifications
You must be signed in to change notification settings - Fork 0
111 lines (111 loc) · 3.31 KB
/
git-push.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: on Git Push
run-name: CI Run upon Git Push.
on:
push:
branches:
- main
- stable
- next
- testing
- staging
- edge
- experimental
jobs:
develop_on:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
TERM: xterm-256color
CONTAINER_USERNAME: ${{ secrets.CONTAINER_USERNAME }}
CONTAINER_PASSWORD: ${{ secrets.CONTAINER_PASSWORD }}
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
PROJECT_SIMULATE_RELEASE_REPO: true
steps:
- name: Checking out designated commit - GITHUB ACTIONS
id: git_check_out
uses: actions/checkout@v4
- name: Initialize - GITHUB ACTIONS
id: git_initialize
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Action Automated Runner"
- name: Execute repo's AutomataCI - PURGE
id: native_ci_purge
run: |
./automataCI/ci.sh.ps1 purge
- name: Execute repo's AutomataCI - CLEAN
id: native_ci_clean
run: |
./automataCI/ci.sh.ps1 clean
- name: Execute repo's AutomataCI - ENVIRONMENT
id: native_ci_env
run: |
./automataCI/ci.sh.ps1 env
- name: Execute repo's AutomataCI - SETUP
id: native_ci_setup
run: |
./automataCI/ci.sh.ps1 setup
- name: Execute repo's AutomataCI - PREPARE
id: native_ci_prepare
run: |
./automataCI/ci.sh.ps1 prepare
- name: Execute repo's AutomataCI - START
id: native_ci_start
run: |
./automataCI/ci.sh.ps1 start
- name: Execute repo's AutomataCI - TEST
id: native_ci_test
run: |
./automataCI/ci.sh.ps1 test
- name: Execute repo's AutomataCI - MATERIALIZE
id: native_ci_materialize
run: |
./automataCI/ci.sh.ps1 materialize
- name: Execute repo's AutomataCI - BUILD
id: native_ci_build
run: |
./automataCI/ci.sh.ps1 build
- name: Execute repo's AutomataCI - NOTARIZE
id: native_ci_notarize
run: |
./automataCI/ci.sh.ps1 notarize
- name: Execute repo's AutomataCI - PACKAGE
id: native_ci_package
run: |
./automataCI/ci.sh.ps1 package
- name: Execute repo's AutomataCI - RELEASE
id: native_ci_release
run: |
./automataCI/ci.sh.ps1 release
- name: Execute repo's AutomataCI - STOP
id: native_ci_stop
run: |
./automataCI/ci.sh.ps1 stop
- name: Execute repo's AutomataCI - DEPLOY
id: native_ci_deploy
run: |
./automataCI/ci.sh.ps1 deploy
- name: Archive Payloads Artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: build_${{ matrix.os }}
path: |
build/
log/
pkg/
public/
- name: Archive Workspace Artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: workspace_${{ matrix.os }}
path: |
bin/
lib/
tmp/
releases/