mirror of
https://github.com/msojocs/wechat-web-devtools-linux.git
synced 2025-07-07 00:02:14 +08:00
67 lines
1.9 KiB
YAML
67 lines
1.9 KiB
YAML
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Build tar.gz AppImage
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build-tar:
|
|
name: Build tar.gz AppImage
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
ARCH: ['x86_64']
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v4
|
|
- name: Inspect directory after downloading artifacts
|
|
run: |
|
|
ls -alFR wechat-devtools-*.build
|
|
ls -alFR wechat-devtools-*.src
|
|
- name: Prepare
|
|
run: |
|
|
sudo apt install -y fuse
|
|
echo "$UID, $GID"
|
|
|
|
- name: Generate TAG
|
|
id: Tag
|
|
run: |
|
|
tag='continuous'
|
|
name='Continuous Build'
|
|
if [ 'true' == ${{ startsWith(github.ref, 'refs/tags/') }} ];then
|
|
tag='${{ github.ref_name }}'
|
|
name='${{ github.ref_name }}'
|
|
fi
|
|
echo "tag result: $tag - $name"
|
|
echo "::set-output name=tag::$tag"
|
|
echo "::set-output name=name::$name"
|
|
|
|
- name: Build
|
|
run: |
|
|
export WINE=false
|
|
export ACTION_MODE=true
|
|
# tar.gz AppImage
|
|
ls -l
|
|
mkdir -p tmp/build
|
|
tools/build-prepare.sh
|
|
tools/build-release.sh ${{ matrix.ARCH }} ${{ steps.tag.outputs.tag }}
|
|
|
|
- name: View Directory
|
|
run: |
|
|
ls -l
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
# Artifact name
|
|
name: wechat-devtools-simple-${{ matrix.ARCH }}.build
|
|
path: tmp/build
|