mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
63 lines
2.1 KiB
YAML
63 lines
2.1 KiB
YAML
name: Netch CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: windows-latest
|
|
env:
|
|
NetchDataURL: https://github.com/NetchX/NetchData/archive/refs/heads/master.zip
|
|
NetchModeURL: https://github.com/NetchX/NetchMode/archive/refs/heads/master.zip
|
|
NetchI18NURL: https://github.com/NetchX/NetchTranslation/archive/refs/heads/master.zip
|
|
steps:
|
|
- name: MSBuild
|
|
uses: microsoft/setup-msbuild@v1.0.2
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Submodule
|
|
shell: pwsh
|
|
run: |
|
|
New-Item -ItemType Directory -Name release | Out-Null
|
|
Set-Location release
|
|
|
|
Invoke-WebRequest -Uri ${{ env.NetchDataURL }} -OutFile data.zip
|
|
Invoke-WebRequest -Uri ${{ env.NetchModeURL }} -OutFile mode.zip
|
|
Invoke-WebRequest -Uri ${{ env.NetchI18NURL }} -OutFile i18n.zip
|
|
|
|
Expand-Archive -Force -Path data.zip -DestinationPath .
|
|
Expand-Archive -Force -Path mode.zip -DestinationPath .
|
|
Expand-Archive -Force -Path i18n.zip -DestinationPath .
|
|
|
|
Get-Item *
|
|
|
|
New-Item -ItemType Directory -Name bin | Out-Null
|
|
New-Item -ItemType Directory -Name mode | Out-Null
|
|
New-Item -ItemType Directory -Name i18n | Out-Null
|
|
|
|
Copy-Item -Recurse -Force .\NetchData-master\* .\bin
|
|
Copy-Item -Recurse -Force .\NetchMode-master\mode\* .\mode
|
|
Copy-Item -Recurse -Force .\NetchTranslation-master\i18n\* .\i18n
|
|
|
|
|
|
Remove-Item -Recurse -Force NetchData-master
|
|
Remove-Item -Recurse -Force NetchMode-master
|
|
Remove-Item -Recurse -Force NetchTranslation-master
|
|
Remove-Item -Force data.zip
|
|
Remove-Item -Force mode.zip
|
|
Remove-Item -Force i18n.zip
|
|
|
|
- name: Build
|
|
shell: pwsh
|
|
run: .\build.ps1 Release -o release
|
|
|
|
- name: Upload
|
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: Netch
|
|
path: release
|