Skip to content

ci: upgrade to anglesharp 1.1.2 and anglesharp.css.1.0.0-beta.144 #95

ci: upgrade to anglesharp 1.1.2 and anglesharp.css.1.0.0-beta.144

ci: upgrade to anglesharp 1.1.2 and anglesharp.css.1.0.0-beta.144 #95

Workflow file for this run

name: CI
on: [push, pull_request]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: ./build.sh
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: |
if ($env:GITHUB_REF -eq "refs/heads/master") {
.\build.ps1 -Target Publish
} elseif ($env:GITHUB_REF -eq "refs/heads/devel") {
.\build.ps1 -Target PrePublish
} else {
.\build.ps1
}