-
-
Notifications
You must be signed in to change notification settings - Fork 4
129 lines (121 loc) · 5.42 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: Release Creation
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Substitute the Manifest and Download URLs in the module.json
# for a FULL RELEASE
- name: Echo Start Full Release Substitution
run: echo "Starting full release substitution..."
- name: Substitute Manifest and Download Links For Versioned Ones
if: "!github.event.release.prerelease"
id: sub_release_manifest_version
uses: microsoft/variable-substitution@v1
with:
files: 'module.json'
env:
version: ${{github.event.release.tag_name}}
url: https://github.com/${{github.repository}}
manifest: https://github.com/${{github.repository}}/releases/latest/download/module.json
download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip
- name: Echo End Full Release Substitution
if: "!github.event.release.prerelease"
run: echo "Full release substitution completed."
# Substitute the Manifest and Download URLs in the module.json
# for a PRE RELEASE. Manifest pointing to live module.json on branch,
# which is updated after tag.
- name: Echo Start Pre Release Substitution
run: echo "Starting pre release substitution..."
- name: Substitute Manifest and Download Links For Versioned Ones
if: "github.event.release.prerelease"
id: sub_prerelease_manifest_version
uses: microsoft/variable-substitution@v1
with:
files: 'module.json'
env:
version: ${{github.event.release.tag_name}}
url: https://github.com/${{github.repository}}
manifest: https://raw.githubusercontent.com/${{github.repository}}/next/module.json
download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip
- name: Echo End Pre Release Substitution
if: "github.event.release.prerelease"
run: echo "Pre release substitution completed."
# Create a zip file with all files required by the module to add to the release
- name: Echo Start Zip Creation
run: echo "Starting zip creation..."
- run: zip -r ./module.zip module.json LICENSE index.js dist/ templates/ lang/ assets/
- name: Echo End Zip Creation
run: echo "Zip creation completed."
# Create a release for this specific version
- name: Echo Start Full Release Update
if: "!github.event.release.prerelease"
run: echo "Starting full release update..."
- name: Update Release with Files
if: "!github.event.release.prerelease"
id: create_version_release
uses: ncipollo/release-action@v1
with:
allowUpdates: true # Set this to false if you want to prevent updating existing releases
name: ${{ github.event.release.name }}
draft: false
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './module.json, ./module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
- name: Echo End Full Release Update
if: "!github.event.release.prerelease"
run: echo "Full release update completed."
# OR create a pre-release for this specific version
- name: Echo Start Pre Release Update
if: "github.event.release.prerelease"
run: echo "Starting pre release update..."
- name: Update Release with Files
if: "github.event.release.prerelease"
id: create_version_prerelease
uses: ncipollo/release-action@v1
with:
allowUpdates: true # Set this to false if you want to prevent updating existing releases
name: ${{ github.event.release.name }}
draft: false
prerelease: true
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './module.json, ./module.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
- name: Echo End Pre Release Update
if: "github.event.release.prerelease"
run: echo "Pre release update completed."
# Update next branch
- name: Echo Start Repository Preparation
if: "github.event.release.prerelease"
run: echo "Starting repository preparation..."
- name: Prepare repository
if: "github.event.release.prerelease"
run: |
git config --global user.name '${{github.actor}}'
git config --global user.email '${{github.actor}}@users.noreply.github.com'
echo "Git congig completed."
git status
echo "git status completed."
git add module.json
echo "git add module.json completed."
git stash
echo "git stash completed."
git clean -f
git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY"
git fetch origin "next"
git switch -c "next" "origin/next"
git checkout stash module.json
echo "Staged changes:"
git status
git diff --staged
git commit -m "${{github.event.release.tag_name}} manifest"
git push -f
- name: Echo End Repository Preparation
if: "github.event.release.prerelease"
run: echo "Repository preparation completed."