-
Notifications
You must be signed in to change notification settings - Fork 49
63 lines (63 loc) · 1.93 KB
/
manual.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
name: Test make and package contents consistency
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-make:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- name: Check each app has a readme.txt
run: |
chmod +x ./.github/workflows/check_for_readme.sh
./.github/workflows/check_for_readme.sh
shell: bash
- name: Check root readme entries
run: |
chmod +x ./.github/workflows/check_root_readme_entries.sh
./.github/workflows/check_root_readme_entries.sh
shell: bash
- name: Check if there is a new csclient.py
run: |
chmod +x ./.github/workflows/csclient_compare.sh
./.github/workflows/csclient_compare.sh
shell: bash
- name: Run make build and clean
run: |
chmod +x ./.github/workflows/builds.sh
./.github/workflows/builds.sh
shell: bash
- name: Tag
if: github.event_name == 'push'
uses: actions/github-script@v3
with:
github-token: ${{ github.token }}
script: |
github.git.deleteRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: "tags/built_apps"
})
github.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: "refs/tags/built_apps",
sha: context.sha
})
setTimeout(() => { console.log("Done") }, 3000)
- name: Publish
if: github.event_name == 'push'
uses: softprops/action-gh-release@v1
with:
files: 'built_apps/*.tar.gz'
tag_name: "built_apps"
token: ${{ secrets.GITHUB_TOKEN }}
body_path: ./built_apps/README.md
name: "Built Apps"