Skip to content

Update boot-comp.sh

Update boot-comp.sh #8

Workflow file for this run

name: Build Gearlock Package
on:
push:
branches: [ "Android11-x86_64" ]
paths:
- '.github/**'
- 'src/**'
tags:
- "v*"
pull_request:
branches: [ "Android11-x86_64" ]
paths:
- '.github/**'
- 'src/**'
workflow_dispatch:
inputs:
RELEASE_CONFIG:
description: 'Upload to Releases'
required: true
default: false
type: boolean
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build package
run: |
cd $GITHUB_WORKSPACE
mv $GITHUB_WORKSPACE/src $GITHUB_WORKSPACE/.github/workdir
cd $GITHUB_WORKSPACE/.github
./build
- name: Get current time
uses: josStorer/[email protected]
id: current-time
with:
format: YYYYMMDD-HHmmss
utcOffset: "+08:00"
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Libhoudini_Android11_x86_64-${{ steps.current-time.outputs.formattedTime }}
path: |
*.gxp
- name: release
if: github.event.inputs.RELEASE_CONFIG == 'true' || github.ref_type == 'tag'
uses: softprops/action-gh-release@v1
with:
files: |
*.gxp