-
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (53 loc) · 1.7 KB
/
Spinning_Bird_Release.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: Release
on:
push:
branches:
- '**'
- '!min'
jobs:
Release:
runs-on: ubuntu-latest
steps:
- name: Clone
run: |
echo '创建 tree/:'
mkdir /home/runner/tree
echo '克隆 main 分支:'
git clone https://github.com/PJ-568/Spinning_Bird.git -b main /home/runner/tree/main
echo '检查 tree/main:'
ls /home/runner/tree/main
- name: Checkout min branch
uses: actions/checkout@v3
with:
ref: min
- name: Merge
run: |
echo '清空 min:'
rm -r ./*
echo '检查 min:'
ls
echo '移动 tree/main/* 到 min/:'
cp -v -u -r /home/runner/tree/main/* .
- name: HTML/CSS/JS Minifier
uses: docker://devatherock/minify-js:2.0.0
with:
add_suffix: false # Optional
- name: Generate the sitemap
id: sitemap
uses: cicirello/generate-sitemap@v1
with:
base-url-path: https://pj568.eu.org/Spinning_Bird/
- name: Output sitemap stats
run: |
echo "sitemap-path = ${{ steps.sitemap.outputs.sitemap-path }}"
echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
- name: Push
run: |
git config --global user.name "PJ569-bot"
git config --global user.email "[email protected]"
git add -A
git commit -m '自动 Release'
git push
- name: Ping Google
run: curl https://www.google.com/ping?sitemap=https://pj568.eu.org/Spinning_Bird/sitemap.xml