-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
261 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Build caddy Compress with UPX | ||
|
||
on: | ||
workflow_dispatch: | ||
#push: | ||
# branches: | ||
# - main | ||
schedule: | ||
- cron: 0 16 */7 * * | ||
|
||
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 | ||
# set work dir | ||
mkdir -p musldist | ||
cd musldist | ||
# linux_amd64 | ||
CADDY_LATEST=$(wget -qO- "https://api.github.com/repos/caddyserver/caddy/releases/latest" | awk -F [v\"] '/"tag_name"/{print $5}' || echo '2.7.6') | ||
wget -c https://github.com/caddyserver/caddy/releases/download/v${CADDY_LATEST}/caddy_${CADDY_LATEST}_linux_amd64.tar.gz -qO- | tar xz -C ./ caddy | ||
chmod +x caddy | ||
upx -1 caddy | ||
- name: Upload dist | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: caddy | ||
path: | | ||
musldist | ||
- name: Generate release tag | ||
id: tag | ||
run: echo "::set-output name=release_tag::caddy" | ||
|
||
- 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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Build cloudflared Compress with UPX | ||
|
||
on: | ||
workflow_dispatch: | ||
#push: | ||
# branches: | ||
# - main | ||
schedule: | ||
- cron: 0 16 */10 * * | ||
|
||
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: Build nezha-agent Compress with UPX | ||
|
||
on: | ||
workflow_dispatch: | ||
#push: | ||
# branches: | ||
# - main | ||
schedule: | ||
- cron: 0 16 */10 * * | ||
|
||
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 | ||
# set work dir | ||
mkdir -p musldist | ||
cd musldist | ||
# linux_amd64 | ||
wget -O nezha-agent_linux_amd64.zip https://github.com/nezhahq/agent/releases/latest/download/nezha-agent_linux_amd64.zip | ||
unzip -qod ./ nezha-agent_linux_amd64.zip | ||
mv nezha-agent_linux_amd64.zip nezha-agent_linux_amd64-source.zip | ||
upx -1 nezha-agent | ||
zip nezha-agent_linux_amd64.zip nezha-agent | ||
rm nezha-agent | ||
# linux_arm64 | ||
wget -O nezha-agent_linux_arm64.zip https://github.com/nezhahq/agent/releases/latest/download/nezha-agent_linux_arm64.zip | ||
unzip -qod ./ nezha-agent_linux_arm64.zip | ||
mv nezha-agent_linux_arm64.zip nezha-agent_linux_arm64-source.zip | ||
upx -1 nezha-agent | ||
zip nezha-agent_linux_arm64.zip nezha-agent | ||
rm nezha-agent | ||
- name: Upload dist | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: nezha-agent | ||
path: | | ||
musldist | ||
- name: Generate release tag | ||
id: tag | ||
run: echo "::set-output name=release_tag::nezha-agent" | ||
|
||
- 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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Build nezha-dashboard Compress with UPX | ||
|
||
on: | ||
workflow_dispatch: | ||
#push: | ||
# branches: | ||
# - main | ||
schedule: | ||
- cron: 0 16 */7 * * | ||
|
||
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 | ||
# set work dir | ||
mkdir -p musldist | ||
cd musldist | ||
# linux_amd64 | ||
DASHBOARD_LATEST=$(wget -qO- "https://api.github.com/repos/naiba/nezha/releases/latest" | awk -F '"' '/"tag_name"/{print $4}') | ||
wget -O dashboard.zip https://github.com/naiba/nezha/releases/download/$DASHBOARD_LATEST/dashboard-linux-amd64.zip | ||
unzip dashboard.zip -d ./ | ||
mv -f ./dist/dashboard-linux-amd64 ./app | ||
rm -rf ./dist ./dashboard.zip | ||
chmod +x app | ||
upx -1 app | ||
- name: Upload dist | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: nezha-dashboard | ||
path: | | ||
musldist | ||
- name: Generate release tag | ||
id: tag | ||
run: echo "::set-output name=release_tag::nezha-dashboard" | ||
|
||
- 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 }} |