chore(deps): update actions/upload-artifact action to v5 (#3) #17
This file contains hidden or 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
| # This workflow will build a .NET project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
| name: .NET | |
| on: | |
| push: | |
| branches: [ "master","dev" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 9.x | |
| - name: Update version in build.txt | |
| run: | | |
| $date = Get-Date -Format "yyyy.MM.dd" | |
| (Get-Content CaiBotLiteMod/build.txt) -replace 'version = \d+\.\d+\.\d+', "version = $date" | Set-Content CaiBotLiteMod/build.txt | |
| - name: Commit changes | |
| run: | | |
| git config --global user.name 'github-actions' | |
| git config --global user.email 'github-actions@github.com' | |
| git add CaiBotLiteMod/build.txt | |
| git commit -m "自动更新版本号 [skip ci]" | |
| git push | |
| continue-on-error: true | |
| - name: Download TMODL | |
| run: | | |
| Invoke-WebRequest -Uri "https://github.com/tModLoader/tModLoader/releases/latest/download/tModLoader.zip" -OutFile "tModLoader.zip" | |
| Expand-Archive -Path "tModLoader.zip" -DestinationPath "tModLoader" | |
| - name: Build | |
| shell: bash | |
| run: | | |
| ModloaderDir=$(pwd)/local/ModLoader | |
| echo ModloaderDir: $ModloaderDir | |
| mkdir -p artifacts/Mods | |
| mkdir -p $ModloaderDir | |
| export ExtraBuildModFlags="-tmlsavedirectory \"$(cygpath -w $ModloaderDir)\"" | |
| echo ExtraBuildModFlags: $ExtraBuildModFlags | |
| dotnet build CaiBotLiteMod/CaiBotLiteMod.csproj --nologo | |
| cp -r $ModloaderDir/Mods/. artifacts/Mods/ | |
| - name: Upload MOD | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: CaiBotLiteMod | |
| path: | | |
| ./artifacts/Mods/CaiBotLiteMod.tmod | |
| - name: Set Release Tag | |
| id: set_tag | |
| run: echo "::set-output name=tag::v$(date +'%Y.%m.%d')" | |
| - name: Update Tag | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
| run: | | |
| git tag -f ${{ steps.set_tag.outputs.tag }} | |
| git push -f origin ${{ steps.set_tag.outputs.tag }} | |
| - name: Release Mod | |
| if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| tag: ${{ steps.set_tag.outputs.tag }} | |
| name: CaiBotLiteMod ${{ steps.set_tag.outputs.tag }} | |
| body: | | |
| # CaiBotLiteMod Ciallo~(∠・ω< )⌒☆ | |
| ### 📅 只推荐使用最新版CaiBot扩展 | |
| ### 📖 MOD版本的CaiBot扩展功能有所缩减 | |
| ### 📦 Auto Build By Github Action | |
| artifacts: | | |
| ./artifacts/Mods/CaiBotLiteMod.tmod | |
| allowUpdates: true | |
| removeArtifacts: true | |