Bump Microsoft.SourceLink.GitHub from 10.0.201 to 10.0.203 #281
Workflow file for this run
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
| name: Type Tree Tpk | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 0' #once per week | |
| # The schedule event can be delayed during periods of high loads of GitHub Actions workflow runs | |
| # | |
| # ┌───────────── minute (0 - 59) | |
| # │ ┌───────────── hour (0 - 23) | |
| # │ │ ┌───────────── day of the month (1 - 31) | |
| # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) | |
| # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) | |
| # │ │ │ │ │ | |
| # │ │ │ │ │ | |
| # │ │ │ │ │ | |
| # * * * * * | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Tpk Repository | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Build | |
| run: dotnet build /p:Configuration=Release | |
| working-directory: ./Tpk.ConsoleApp/ | |
| - name: Checkout TypeTreeDumps Repository | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: 'AssetRipper/TypeTreeDumps' | |
| sparse-checkout: 'InfoJson' | |
| path: TypeTreeDumps | |
| - name: Make files executable | |
| shell: bash | |
| run: chmod +x ./Tpk.ConsoleApp/bin/Release/net10.0/AssetRipper.Tpk.ConsoleApp | |
| - name: Make tpk file | |
| shell: bash | |
| run: ./Tpk.ConsoleApp/bin/Release/net10.0/AssetRipper.Tpk.ConsoleApp --type-tree ./TypeTreeDumps/InfoJson | |
| - name: Upload Uncompressed file | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: uncompressed_file | |
| path: ./uncompressed.tpk | |
| if-no-files-found: error | |
| - name: Upload Lz4 file | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: lz4_file | |
| path: ./lz4.tpk | |
| if-no-files-found: error | |
| - name: Upload Lzma file | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: lzma_file | |
| path: ./lzma.tpk | |
| if-no-files-found: error | |
| - name: Upload Brotli file | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: brotli_file | |
| path: ./brotli.tpk | |
| if-no-files-found: error | |