Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:
then
sh gradlew assembleRelease -Parm64-v8a
else
sh gradlew assembleDebug -Parm64-v8a
sh gradlew assembleDebug
fi
- name: Prepare artifacts
run: |
Expand Down Expand Up @@ -270,6 +270,8 @@ jobs:
path: ./release_url

publish:
permissions:
contents: write
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
needs: release
Expand Down Expand Up @@ -354,4 +356,4 @@ jobs:
TAG_NAME: ${{ steps.get_tag_name.outputs.tag_name }}
SUFFIX: ${{ matrix.config.suffix }}
run: |
gh release upload "${TAG_NAME}" "./gfxreconstruct-${TAG_NAME}-${SUFFIX}" --clobber
gh release upload "${TAG_NAME}" "./gfxreconstruct-${TAG_NAME}-${SUFFIX}" --repo "${GITHUB_REPOSITORY}" --clobber
4 changes: 3 additions & 1 deletion .github/workflows/sdk_android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ MESSAGE
path: ./release_url

publish:
permissions:
contents: write
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
needs: release
Expand Down Expand Up @@ -174,4 +176,4 @@ MESSAGE
TAG_NAME: ${{ steps.get_tag_name.outputs.tag_name }}
SUFFIX: ${{ matrix.config.suffix }}
run: |
gh release upload "${TAG_NAME}" "./gfxreconstruct-${TAG_NAME}-${SUFFIX}" --clobber
gh release upload "${TAG_NAME}" "./gfxreconstruct-${TAG_NAME}-${SUFFIX}" --repo "${GITHUB_REPOSITORY}" --clobber
Loading