-
Notifications
You must be signed in to change notification settings - Fork 0
208 lines (201 loc) · 8.42 KB
/
actions.yaml
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
name: actions
on:
push:
paths-ignore:
- README.md
- LICENSE.md
- 'docs/**'
- '.github/workflows/codeql-analysis.yaml'
branches:
- root
pull_request:
paths-ignore:
- README.md
- LICENSE.md
- 'docs/**'
- '.github/workflows/codeql-analysis.yaml'
workflow_dispatch:
jobs:
build-website:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- name: Get version
id: jjversion
uses: jjliggett/jjversion-action@cfcf89e966cb0ba4a32db8cb8565733a3c469956
- name: Display jjversion outputs
run: |
echo "Major: ${{ steps.jjversion.outputs.major }}"
echo "Minor: ${{ steps.jjversion.outputs.minor }}"
echo "Patch: ${{ steps.jjversion.outputs.patch }}"
echo "MajorMinorPatch: ${{ steps.jjversion.outputs.majorMinorPatch }}"
echo "Sha: ${{ steps.jjversion.outputs.sha }}"
echo "ShortSha: ${{ steps.jjversion.outputs.shortSha }}"
- name: Setup .NET
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25
with:
dotnet-version: 8.0.403
- name: Restore dependencies
run: dotnet restore --locked-mode CurrentTimeApp/CurrentTimeApp.csproj
- name: Build
run: dotnet build -c Release --no-restore CurrentTimeApp/CurrentTimeApp.csproj
- name: Test
run: dotnet test --no-build --verbosity normal CurrentTimeApp/CurrentTimeApp.csproj
- name: Publish application
run: dotnet publish --no-restore --no-build -c Release -o release CurrentTimeApp/CurrentTimeApp.csproj
- name: Change index.html base href from / to CurrentTimeApp for GitHub Pages
run: sed -i 's/<base href="\/"/<base href="\/CurrentTimeApp\/"/g' release/wwwroot/index.html
- run: cat release/wwwroot/index.html
- name: Add .nojekyll as this is not a Jekyll project, to allow files and folders starting with underscores
run: touch release/wwwroot/.nojekyll
- run: cp release/wwwroot/index.html release/wwwroot/404.html
- name: Upload release.zip
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: release
path: release/
build-android:
runs-on: windows-latest
defaults:
run:
shell: pwsh
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- name: Get version
id: jjversion
uses: jjliggett/jjversion-action@cfcf89e966cb0ba4a32db8cb8565733a3c469956
- name: Display jjversion outputs
run: |
echo "Major: ${{ steps.jjversion.outputs.major }}"
echo "Minor: ${{ steps.jjversion.outputs.minor }}"
echo "Patch: ${{ steps.jjversion.outputs.patch }}"
echo "MajorMinorPatch: ${{ steps.jjversion.outputs.majorMinorPatch }}"
echo "Sha: ${{ steps.jjversion.outputs.sha }}"
echo "ShortSha: ${{ steps.jjversion.outputs.shortSha }}"
- name: Setup .NET
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25
with:
dotnet-version: 8.0.403
- name: Install dotnet maui workload
run: dotnet workload install maui --source https://api.nuget.org/v3/index.json
- name: Install dotnet maui-android workload to build application
run: dotnet workload restore CurrentTimeApp.MauiBlazor/CurrentTimeApp.MauiBlazor.csproj
- name: Restore dependencies
run: dotnet restore --locked-mode CurrentTimeApp.MauiBlazor/CurrentTimeApp.MauiBlazor.csproj
- name: Build
run: dotnet build -c Release --no-restore -f net8.0-android CurrentTimeApp.MauiBlazor/CurrentTimeApp.MauiBlazor.csproj
- name: Test
run: dotnet test --no-build --verbosity normal -f net8.0-android CurrentTimeApp.MauiBlazor/CurrentTimeApp.MauiBlazor.csproj
- name: Publish application
run: dotnet publish --no-restore -c Release -o android-release -f net8.0-android CurrentTimeApp.MauiBlazor/CurrentTimeApp.MauiBlazor.csproj
- run: ls -R
- name: Upload release.zip
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: android-release
path: android-release/
deploy-website-develop:
runs-on: ubuntu-latest
needs: build-website
environment:
name: development
url: https://jjliggett.github.io/CurrentTimeApp-dev-env/
if: ${{ github.ref != 'refs/heads/root' }}
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- name: Download build
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: release
path: release/
- name: Change index.html base href from CurrentTimeApp to CurrentTimeApp-dev-env for GitHub Pages
run: sed -i 's/<base href="\/CurrentTimeApp\/"/<base href="\/CurrentTimeApp-dev-env\/"/g' release/wwwroot/index.html
- run: ls -R
- name: Publish application to GitHub Pages
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8
with:
repository-name: jjliggett/CurrentTimeApp-dev-env
token: ${{ secrets.DEV_PAT_TOKEN }}
branch: gh-pages
folder: release/wwwroot
git-config-name: jjliggett
git-config-email: [email protected]
single-commit: true
deploy-website-production:
runs-on: ubuntu-latest
needs: build-website
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- name: Download build
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: release
path: release/
- run: ls -R
- name: Publish application to GitHub Pages
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8
if: ${{ github.ref == 'refs/heads/root' }}
with:
token: ${{ secrets.PROD_PAT_TOKEN }}
branch: gh-pages
folder: release/wwwroot
git-config-name: jjliggett
git-config-email: [email protected]
deploy-release:
runs-on: ubuntu-latest
needs:
- build-android
- deploy-website-production
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- name: Get version
id: jjversion
uses: jjliggett/jjversion-action@cfcf89e966cb0ba4a32db8cb8565733a3c469956
- name: Display jjversion outputs
run: |
echo "Major: ${{ steps.jjversion.outputs.major }}"
echo "Minor: ${{ steps.jjversion.outputs.minor }}"
echo "Patch: ${{ steps.jjversion.outputs.patch }}"
echo "MajorMinorPatch: ${{ steps.jjversion.outputs.majorMinorPatch }}"
echo "Sha: ${{ steps.jjversion.outputs.sha }}"
echo "ShortSha: ${{ steps.jjversion.outputs.shortSha }}"
- run: git reset --soft HEAD~1
- name: Get previous version from previous commit
id: previousversion
uses: jjliggett/jjversion-action@cfcf89e966cb0ba4a32db8cb8565733a3c469956
- run: echo "VERSION=$(echo ${{ steps.jjversion.outputs.majorMinorPatch }})" >> $GITHUB_ENV
- run: echo "PREVIOUS_COMMIT_VERSION=$(echo ${{ steps.previousversion.outputs.majorMinorPatch }})" >> $GITHUB_ENV
- name: Download build
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
with:
name: android-release
path: android-release/
- run: ls -R
- name: Create GitHub release
uses: marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0
if: ${{ github.ref == 'refs/heads/root' && env.VERSION != env.PREVIOUS_COMMIT_VERSION }}
with:
repo_token: ${{ secrets.PROD_PAT_TOKEN }}
automatic_release_tag: v${{ env.VERSION }}
prerelease: false
files: |
android-release/com.jjliggett.currenttimeapp.mauiblazor-Signed.apk
README.md
LICENSE.md