相关目录移动至Appdata #17
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: Build Updater | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
concurrency: build_xl | |
jobs: | |
build-release: | |
name: Build Release on Windows | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: windows-2022 | |
steps: | |
# - uses: nadock/verified_commits_check@f9b330e987c2e7121dfc0230e65cb5751ee5fac9 | |
- uses: actions/checkout@v1 | |
- name: Initialize Submodules | |
run: git submodule update --init --recursive | |
- name: Restore Nuget Packages | |
run: | | |
dotnet restore | |
- name: Define VERSION | |
run: | | |
$env:COMMIT = $env:GITHUB_SHA.Substring(0, 7) | |
$env:REPO_NAME = $env:GITHUB_REPOSITORY -replace '.*/' | |
$env:BRANCH = $env:GITHUB_REF -replace '.*/' | |
($env:REPO_NAME) >> VERSION | |
($env:BRANCH) >> VERSION | |
($env:COMMIT) >> VERSION | |
- name: Build DotNet4 for Release | |
run: | | |
cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" | |
.\MSBuild.exe $Env:GITHUB_WORKSPACE\Dalamud.Updater.sln /t:Build /p:Configuration=Release | |
- name: Create package | |
shell: pwsh | |
run: | | |
Write-Host "Create Zip package" | |
Compress-Archive -Force Dalamud.Updater\bin\Release\net48\Dalamud.Updater.exe .\release.zip # Recreate the release zip | |
- name: Create Release | |
uses: softprops/action-gh-release@91409e712cf565ce9eff10c87a8d1b11b81757ae | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: .\release.zip | |
name: Release ${{ github.ref }} | |
prerelease: true | |
build: | |
name: Build on Windows | |
runs-on: windows-2022 | |
if: "!startsWith(github.ref, 'refs/tags/')" | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Initialize Submodules | |
run: git submodule update --init --recursive | |
- name: Restore Nuget Packages | |
run: | | |
dotnet restore | |
- name: Define VERSION | |
run: | | |
$env:COMMIT = $env:GITHUB_SHA.Substring(0, 7) | |
$env:REPO_NAME = $env:GITHUB_REPOSITORY -replace '.*/' | |
$env:BRANCH = $env:GITHUB_REF -replace '.*/' | |
($env:REPO_NAME) >> VERSION | |
($env:BRANCH) >> VERSION | |
($env:COMMIT) >> VERSION | |
- name: Build DotNet4 Master | |
run: | | |
cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" | |
.\MSBuild.exe $Env:GITHUB_WORKSPACE\Dalamud.Updater.sln /t:Build /p:Configuration=Release | |
- name: Upload artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: Updater-artifact | |
path: Dalamud.Updater\bin\Release\net48 |