forked from IceYGO/windbot
-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,6 +127,63 @@ jobs: | |
with: | ||
release_id: ${{ needs.create_release.outputs.output }} | ||
assets_path: assets | ||
|
||
Android2: | ||
runs-on: windows-2019 | ||
needs: create_release | ||
if: >- | ||
!( | ||
contains(github.event.head_commit.message, '[ci skip]') || | ||
contains(github.event.head_commit.message, '[skip ci]') || | ||
contains(github.event.head_commit.message, '[actions skip]') || | ||
contains(github.event.head_commit.message, '[skip actions]') | ||
) | ||
env: | ||
TRAVIS_OS_NAME: android | ||
steps: | ||
- name: Set ARTIFACT env var | ||
shell: bash | ||
run: | | ||
echo "ARTIFACT=WindBotIgnite-Release-$(date +%Y%m%d)-${{ github.sha }}.zip" >> $GITHUB_ENV | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
- uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 1 | ||
submodules: true | ||
# Unspecified dependency for Embeddinator; 64-bit does not work | ||
- name: Install mono | ||
shell: bash | ||
run: | | ||
choco install mono --x86 | ||
- name: Install ndk 15 | ||
shell: bash | ||
env: | ||
VS_PREFIX: "16.0_" | ||
run: | | ||
./ci/install-sdk-ndk.sh | ||
- name: Build | ||
shell: bash | ||
run: | | ||
nuget restore WindBot.sln | ||
msbuild.exe -m -p:Configuration=Release WindBot.sln | ||
- name: Predeploy | ||
shell: bash | ||
run: | | ||
cd bin && mkdir -p WindBot | ||
cp -r Release/COPYING Release/LICENSE Release/bots.json Release/Decks/ Release/Dialogs/ WindBot/ | ||
7z a WindBotIgnite-Resources.7z WindBot && cd .. | ||
mkdir -p assets | ||
mv output/libWindbot.aar bin/WindBotIgnite-Resources.7z assets | ||
- name: Upload Release Assets | ||
if: startsWith(github.ref, 'refs/tags/') | ||
id: upload-release-assets | ||
uses: dwenegar/upload-release-assets@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
release_id: ${{ needs.create_release.outputs.output }} | ||
assets_path: assets | ||
|
||
|
||
# assets to upload android | ||
|