-
Notifications
You must be signed in to change notification settings - Fork 19
65 lines (57 loc) · 1.93 KB
/
upx-cloudflared.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
name: Build cloudflared Compress with UPX
on:
workflow_dispatch:
#push:
# branches:
# - main
schedule:
- cron: 0 16 * * *
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Compress with UPX
run: |
# install upx
wget https://github.com/upx/upx/releases/download/v4.2.1/upx-4.2.1-amd64_linux.tar.xz
tar -Jxf upx*.tar.xz
sudo cp upx*/upx /usr/bin
# download cloudflared
mkdir -p musldist
cd musldist
wget -qO cloudflared-linux-amd64 https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64
wget -qO cloudflared-linux-arm64 https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-arm64
chmod +x cloudflared-linux-amd64
chmod +x cloudflared-linux-arm64
cp cloudflared-linux-amd64 cloudflared-linux-amd64-source
cp cloudflared-linux-arm64 cloudflared-linux-arm64-source
# do upx Compress
upx -1 cloudflared-linux-amd64
upx -1 cloudflared-linux-arm64
- name: Upload dist
uses: actions/upload-artifact@main
with:
name: cloudflared
path: |
musldist
- name: Generate release tag
id: tag
run: echo "::set-output name=release_tag::cloudflared"
- name: Create release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.release_tag }}
files: |
musldist/*
- name: Remove old Releases
uses: dev-drprasad/[email protected]
if: env.UPLOAD_RELEASE == 'true' && !cancelled()
with:
keep_latest: 1
delete_tags: true
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_KEY }}