Skip to content

Update windbot.yml #170

Update windbot.yml

Update windbot.yml #170

Workflow file for this run

name: Build EDOPro

Check failure on line 1 in .github/workflows/windbot.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/windbot.yml

Invalid workflow file

(Line: 8, Col: 3): The workflow must contain at least one job with no dependencies.
on: [push, pull_request]
env:
DEPLOY_REPO: ${{ secrets.DEPLOY_REPO }}
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH }}
jobs:
Android:
runs-on: windows-2022
needs: create_release
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 --ignore-checksums
- name: Install SDK 24, SDK 25 and NDK 15
shell: bash
env:
VS_PREFIX: "16.0_"
run: |
./ci/install-sdk-ndk.sh
- name: Build
shell: bash
run: |
msbuild.exe -t: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
# - $ARTIFACT
# - libWindbot.aar
# - WindBotIgnite-Resources.7z