Bump Xamarin.Forms from 5.0.0.2612 to 5.0.0.2622 #132
Workflow file for this run
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
name: Mobile | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
Build_Android: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Restore NuGet | |
run: | | |
nuget restore | |
- name: Inject Token | |
env: | |
TOKEN: ${{ secrets.TOKEN }} | |
run: | | |
GitHubConstantsFile=`find . -name GitHubConstants.cs | head -1` | |
echo GitHubConstantsFile = $GitHubConstantsFile | |
sed -i '' "s/PersonalAccessToken = \"\"/PersonalAccessToken = \"$TOKEN\"/g" "$GitHubConstantsFile" | |
sed -i '' "s/#error Missing Token/\/\/##error Missing Token/g" "$GitHubConstantsFile" | |
- name: Build Android App | |
run: | | |
msbuild ./SimpleXamarinGraphQL.Android/SimpleXamarinGraphQL.Android.csproj /verbosity:normal /p:Configuration=Release | |