github actions bugfixes
This commit is contained in:
committed by
GitHub
parent
b84bd99059
commit
39a962c59b
@@ -52,7 +52,7 @@ jobs:
|
|||||||
if: ${{ success() }}
|
if: ${{ success() }}
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: binaries-${{ env.SHA8 }}-${{ env.BRANCH }}
|
name: binaries-${{ env.SHA8 }}
|
||||||
path: |
|
path: |
|
||||||
tutorials/01-hello/bin
|
tutorials/01-hello/bin
|
||||||
tutorials/02-sprite/bin
|
tutorials/02-sprite/bin
|
||||||
|
|||||||
@@ -51,7 +51,8 @@ jobs:
|
|||||||
- name: Get branch
|
- name: Get branch
|
||||||
id: branch
|
id: branch
|
||||||
run: |
|
run: |
|
||||||
echo "BRANCH=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
|
BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/} | sed 's/refs\///g' | sed 's/\//_/g')
|
||||||
|
echo "BRANCH=${BRANCH_NAME}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload build artifacts
|
- name: Upload build artifacts
|
||||||
if: ${{ success() }}
|
if: ${{ success() }}
|
||||||
|
|||||||
Reference in New Issue
Block a user