-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (50 loc) · 1.43 KB
/
workflows.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
---
name: Lints and STG upload
on:
push:
branches:
- '**'
jobs:
HTML_Lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/cradle8810/htmllint:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Execute HTMLlint
run: htmllint
Sitemap_txt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: find html files and output as sitemap.txt
run: |
find . -type f -name "*.html" | \
sed 's#\.\/#http:\/\/hayaworld\.net/#g' | \
sed 's#\/www##g' \
> www/sitemap.txt
- name: View sitemap.txt
run: cat "www/sitemap.txt"
- name: Upload sitemap.txt as artifacts
uses: actions/upload-artifact@v4
with:
name: sitemap.txt
path: www/sitemap.txt
Deployment_STG:
needs:
- HTML_Lint
- Sitemap_txt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Upload to STG
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_SRV }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ${{ secrets.FTP_STG_DIR }}/
local-dir: www/