-
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpr-check-linux.yml
More file actions
33 lines (32 loc) · 768 Bytes
/
pr-check-linux.yml
File metadata and controls
33 lines (32 loc) · 768 Bytes
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
name: Build Check Linux
on:
pull_request:
types:
- opened
- synchronize
jobs:
build:
name: Build Binary
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: sh release-linux.sh
- name: Install 7-Zip
run: sudo apt-get install p7zip-full
- name: Compress
run: |
# Use "-mx9" option for extreme compression
7z a -t7z -mx9 WebGAL_Terre.7z release/*
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: WebGAL_Terre.7z
path: WebGAL_Terre.7z