Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit aa8865b

Browse files
committed
Gzip the web artifacts before pushing to a release
1 parent 959db3b commit aa8865b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,17 @@ jobs:
3333
- uses: actions/checkout@v3
3434
- name: Build Release version
3535
run: cargo build --release --verbose
36+
- name: Archive Release
37+
uses: thedoctor0/zip-release@main
38+
with:
39+
type: 'zip'
40+
filename: 'web.tar.gz'
41+
type: 'tar'
42+
path: './web'
3643
- name: Release
3744
uses: softprops/action-gh-release@v1
3845
with:
3946
files: |
4047
LICENSE
4148
target/release/hunter2
42-
web/*
43-
web/**/*
49+
web.tar.gz

0 commit comments

Comments
 (0)