-
-
Notifications
You must be signed in to change notification settings - Fork 744
70 lines (65 loc) · 2.06 KB
/
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
64
65
66
67
68
69
70
name: Create Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: write
jobs:
# test:
# strategy:
# fail-fast: true
# matrix:
# os: [ubuntu-latest]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v2
# - name: Install project
# run: |
# sudo mkdir /opt/hiddify-manager
# sudo cp -r * /opt/hiddify-manager/
# cd /opt/hiddify-manager/
# sudo bash install.sh
# - name: check working
# env:
# SQLALCHEMY_DATABASE_URI: sqlite:////opt/hiddify-manager/hiddify-panel/database.db
# run: |
# cd /opt/hiddify-manager/
# grep -q -e '-----Finished!-----' log/system/0-install.log
# cd hiddify-panel;hiddifypanel all-configs
release:
# if: startsWith(github.ref, 'refs/tags/v')
name: Create Release
runs-on: ubuntu-latest
# needs: test
steps:
- uses: actions/checkout@v2
with:
# by default, it uses a depth of 1
# this fetches all history so that we can read each commit
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install gitchangelog pystache
sudo apt install -y zip
- name: zip
run: |
zip -r hiddify-manager.zip . -x .**\*
cp hiddify-manager.zip hiddify-config.zip
cp hiddify-manager.zip hiddify-server.zip
- name: Generate Changelog
run: .github/release_message.sh > release_message.md
- name: Release
uses: softprops/action-gh-release@v1
with:
files: "*.zip"
prerelease: ${{ contains(github.ref_name,'dev') }}
body_path: release_message.md