mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-07 02:18:29 +00:00
echo debugging
This commit is contained in:
parent
2c25bd0a41
commit
893ee7fe7a
9
.github/workflows/build-extension.yml
vendored
9
.github/workflows/build-extension.yml
vendored
@ -57,7 +57,11 @@ jobs:
|
|||||||
# i hate github actions
|
# i hate github actions
|
||||||
- name: Add SHORT_SHA env property with commit short sha
|
- name: Add SHORT_SHA env property with commit short sha
|
||||||
shell: bash
|
shell: bash
|
||||||
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
run: |
|
||||||
|
echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
|
||||||
|
echo ${{ inputs.os }}
|
||||||
|
echo ${{ env.SHORT_SHA }}
|
||||||
|
|
||||||
|
|
||||||
- name: Linux dependencies
|
- name: Linux dependencies
|
||||||
if: startsWith(runner.os, 'Linux')
|
if: startsWith(runner.os, 'Linux')
|
||||||
@ -103,10 +107,11 @@ jobs:
|
|||||||
mkdir -p build && cd build
|
mkdir -p build && cd build
|
||||||
python ../configure.py --enable-optimize
|
python ../configure.py --enable-optimize
|
||||||
ambuild
|
ambuild
|
||||||
ZIP_FILENAME="${{ env.PROJECT }}-${SHORT_SHA}-${{ runner.os }}.zip"
|
ZIP_FILENAME="${{ env.PROJECT }}-${{ env.SHORT_SHA }}-${{ runner.os }}.zip"
|
||||||
echo ${ZIP_FILENAME}
|
echo ${ZIP_FILENAME}
|
||||||
echo "ZIP_FILENAME=${ZIP_FILENAME}" >> $GITHUB_ENV
|
echo "ZIP_FILENAME=${ZIP_FILENAME}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
|
||||||
#- name: Upload package
|
#- name: Upload package
|
||||||
# if: ${{ inputs.upload }}
|
# if: ${{ inputs.upload }}
|
||||||
# uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v4
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user