Add some logging to Chainloader #45
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: Build | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| tags-ignore: | |
| - "**" | |
| pull_request: | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 # Need to fetch all for proper history | |
| - name: Collect build info | |
| id: info | |
| uses: actions/github-script@v6 | |
| with: | |
| script: | | |
| let buildType = "Development"; | |
| if (context.ref == "refs/heads/master" && context.repo.owner == "BepInEx") { | |
| buildType = "BleedingEdge"; | |
| } | |
| core.setOutput("build_type", buildType); | |
| let shortHash = ""; | |
| await exec.exec("git", ["rev-parse", "--short", "HEAD"], { | |
| listeners: { | |
| stdout: d => shortHash += d.toString().trim(), | |
| } | |
| }); | |
| core.setOutput("sha_short", shortHash); | |
| core.setOutput("build_id", context.runNumber + 600); // builds.bepinex.dev build numbers start at 500 | |
| - uses: nrwl/last-successful-commit-action@v1 | |
| id: last_successful_commit | |
| if: ${{ steps.info.outputs.build_type == 'BleedingEdge' }} | |
| with: | |
| branch: master | |
| workflow_id: build.yml | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: awalsh128/cache-apt-pkgs-action@latest | |
| with: | |
| packages: b3sum | |
| version: 1.0 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "8.0.x" | |
| - name: Build | |
| run: | | |
| ./build.sh --target Pack --build-type ${{ steps.info.outputs.build_type }} --build-id ${{ steps.info.outputs.build_id }} --last-build-commit \"${{ steps.last_successful_commit.outputs.commit_hash }}\" --nuget-api-key \"${{ secrets.BEPIN_DEV_NUGET_KEY }}\" | |
| - name: Upload to BepinBuilds | |
| env: | |
| BEPISBUILDS_HOST: ${{ secrets.BEPISBUILDS_HOST }} | |
| if: ${{ steps.info.outputs.build_type == 'BleedingEdge' && env.BEPISBUILDS_HOST != null }} | |
| run: | | |
| artifacts_list=$(find ./bin/dist -maxdepth 1 -type f | tr '\n' ','); artifacts_list=${artifacts_list::-1}; | |
| curl --upload-file "{${artifacts_list}}" --ftp-pasv --ftp-skip-pasv-ip --ftp-create-dirs --ftp-method singlecwd --disable-epsv "ftp://${{ secrets.BEPISBUILDS_AUTH }}@${{ secrets.BEPISBUILDS_HOST }}:${{ secrets.BEPISBUILDS_PORT }}/bepinex_be/artifacts/${{ steps.info.outputs.build_id }}/" | |
| - name: Generate changelog | |
| id: generate_changelog | |
| if: ${{ steps.info.outputs.build_type == 'BleedingEdge' }} | |
| run: | | |
| changelog=$(git --no-pager log --no-merges --pretty="format:- (\`%h\`) [%an] %s" ${{ steps.last_successful_commit.outputs.commit_hash }}..HEAD | sed ':a;N;$!ba;s/"/\\"/g' | sed ':a;N;$!ba;s/\n/\\n/g') | |
| echo "::set-output name=changelog::$changelog" | |
| - name: Hash Artifacts | |
| run: | | |
| sha256sum ./bin/dist/*.zip > ./bin/dist/hashes.sha256 | |
| b3sum ./bin/dist/*.zip > ./bin/dist/hashes.blake3 | |
| - name: Upload Artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: | | |
| ./bin/dist/*.zip | |
| ./bin/dist/hashes.sha256 | |
| ./bin/dist/hashes.blake3 | |
| name: "BepInEx_CI_${{ steps.info.outputs.build_type }}_${{ steps.info.outputs.sha_short }}_${{ steps.info.outputs.build_id || 0 }}" | |
| - name: Create release | |
| if: startsWith(github.ref, 'refs/tags/') | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| ./bin/dist/*.zip | |
| ./bin/dist/hashes.sha256 | |
| ./bin/dist/hashes.blake3 | |
| fail_on_unmatched_files: true | |
| - name: Create CI release | |
| if: github.ref == 'refs/heads/v5-lts' | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| ./bin/dist/*.zip | |
| ./bin/dist/hashes.sha256 | |
| ./bin/dist/hashes.blake3 | |
| prerelease: true | |
| tag_name: ci | |
| name: "CI build" | |
| generate_release_notes: true | |
| fail_on_unmatched_files: true |