diff --git a/.github/workflows/release-per-commit.yml b/.github/workflows/release-per-commit.yml deleted file mode 100644 index 8ba79c367..000000000 --- a/.github/workflows/release-per-commit.yml +++ /dev/null @@ -1,108 +0,0 @@ -name: Release per-commit - -on: - workflow_run: - workflows: ["Cargo Build, Test, and Linting"] - types: - - completed - -env: - RUST_BACKTRACE: 1 - SHELL: /bin/bash - -jobs: - create-draft-release: - if: success() && github.event.workflow_run.event == 'push' && github.event.workflow_run.head_branch == 'master' - name: Create Draft GH Release - runs-on: ubuntu-latest - outputs: - release-id: ${{ steps.create-release.outputs.RELEASE_ID }} - steps: - - id: create-release - run: | - RELEASE_TAG="per-commit-${{ github.sha }}" - RELEASE_TITLE="Build ${{ github.sha }}" - RELEASE_URL=$(gh release create "${RELEASE_TAG}" \ - --draft \ - --title "${RELEASE_TITLE}" \ - --notes 'Per-commit build based on Pumpkin-MC/Pumpkin@${{ github.sha }}' \ - --repo ${NIGHTLY_REPO}) - TEMP_TAG=$(basename "$RELEASE_URL") - RELEASE_ID=$( \ - gh api -H "Accept: application/vnd.github+json" \ - -H "X-GitHub-Api-Version: 2022-11-28" \ - "/repos/${NIGHTLY_REPO}/releases/tags/${TEMP_TAG}" \ - | jq '.id' \ - ) - echo "RELEASE_ID=${RELEASE_ID}" >> ${GITHUB_OUTPUT} - env: - GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} - NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds - - upload-artifacts: - if: always() && (github.repository == 'Pumpkin-MC/Pumpkin' || github.event_name == 'workflow_dispatch') - name: Download & Upload Builds - runs-on: ubuntu-latest - needs: - - create-draft-release - steps: - - name: Download all build artifacts - uses: actions/github-script@v6 - with: - script: | - // This script finds and downloads all artifacts from the triggering workflow run - const artifacts = await github.rest.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: ${{ github.event.workflow_run.id }}, - }); - for (const artifact of artifacts.data.artifacts) { - const download = await github.rest.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: artifact.id, - archive_format: 'zip', - }); - fs.writeFileSync(`${artifact.name}.zip`, Buffer.from(download.data)); - // Unzip the downloaded file - // This is a simple example, you'd need to add more robust unzipping logic. - } - - name: Upload Linux executable to release - run: | - gh release upload ${{ needs.create-draft-release.outputs.release-id }} ./pumpkin-ubuntu-latest/pumpkin --repo ${NIGHTLY_REPO} - env: - GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} - NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds - - name: Upload Windows executable to release - run: | - gh release upload ${{ needs.create-draft-release.outputs.release-id }} ./pumpkin-windows-latest/pumpkin.exe --repo ${NIGHTLY_REPO} - env: - GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} - NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds - - name: Upload macOS executable to release - run: | - gh release upload ${{ needs.create-draft-release.outputs.release-id }} ./pumpkin-macos-latest/pumpkin --repo ${NIGHTLY_REPO} - env: - GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} - NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds - - publish-per-commit-release: - if: always() && (github.repository == 'Pumpkin-MC/Pumpkin' || github.event_name == 'workflow_dispatch') - name: Publish GH Release - runs-on: ubuntu-latest - needs: - - create-draft-release - - upload-artifacts - steps: - - name: Publish as latest - run: | - gh api \ - --method PATCH \ - -H "Accept: application/vnd.github+json" \ - -H "X-GitHub-Api-Version: 2022-11-28" \ - /repos/${NIGHTLY_REPO}/releases/${RELEASE_ID} \ - -F draft=false -F prerelease=true - env: - GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} - NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds - RELEASE_ID: ${{ needs.create-draft-release.outputs.release-id }} \ No newline at end of file diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index caf05ce43..6ece22655 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -21,6 +21,7 @@ jobs: - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 - run: cargo fmt --check + clippy: name: Run lints runs-on: ubuntu-latest @@ -33,6 +34,7 @@ jobs: - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 - run: cargo clippy --all-targets --all-features + build_and_test: name: Build project and test runs-on: ${{ matrix.os }} @@ -46,8 +48,9 @@ jobs: - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 - run: cargo test --verbose + build_release: - name: Build project in release + name: Build project in release (${{ matrix.os }}) runs-on: ${{ matrix.os }} strategy: matrix: @@ -76,4 +79,92 @@ jobs: - uses: actions/checkout@v4 - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - uses: Swatinem/rust-cache@v2 - - run: cargo clippy --release --all-targets --all-features \ No newline at end of file + - run: cargo clippy --release --all-targets --all-features + release_on_push: + name: Create & Upload Release + runs-on: ubuntu-latest + # This job only runs after all `build_release` jobs have completed successfully + needs: [build_release] + # This job only runs on a successful push to the master branch + if: success() && github.event_name == 'push' && github.ref == 'refs/heads/master' + env: + NIGHTLY_REPO: ${{ github.repository_owner }}/pumpkin-commit-builds + steps: + - name: Checkout the repository + uses: actions/checkout@v4 + # Creates a draft release for the current commit + - name: Create Draft GitHub Release + id: create-release + run: | + RELEASE_TAG="per-commit-${{ github.sha }}" + RELEASE_TITLE="Build ${{ github.sha }}" + + # Using gh CLI to create a new draft release + RELEASE_URL=$(gh release create "${RELEASE_TAG}" \ + --draft \ + --title "${RELEASE_TITLE}" \ + --notes 'Per-commit build based on ${{ github.repository }}@${{ github.sha }}' \ + --repo ${{ env.NIGHTLY_REPO }}) + + # Extract the release ID from the API response + TEMP_TAG=$(basename "$RELEASE_URL") + RELEASE_ID=$( \ + gh api -H "Accept: application/vnd.github+json" \ + "/repos/${NIGHTLY_REPO}/releases/tags/${TEMP_TAG}" \ + | jq '.id' \ + ) + + echo "RELEASE_ID=${RELEASE_ID}" >> ${GITHUB_OUTPUT} + env: + GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} + + # Download and upload the Linux artifact + - name: Download Linux executable + uses: actions/download-artifact@v4 + with: + name: pumpkin-ubuntu-latest + path: ./ + + - name: Upload Linux executable to release + run: | + gh release upload ${{ steps.create-release.outputs.release-id }} ./pumpkin --repo ${{ env.NIGHTLY_REPO }} + env: + GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} + + # Download and upload the Windows artifact + - name: Download Windows executable + uses: actions/download-artifact@v4 + with: + name: pumpkin-windows-latest + path: ./ + + - name: Upload Windows executable to release + run: | + gh release upload ${{ steps.create-release.outputs.release-id }} ./pumpkin.exe --repo ${{ env.NIGHTLY_REPO }} + env: + GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} + + # Download and upload the macOS artifact + - name: Download macOS executable + uses: actions/download-artifact@v4 + with: + name: pumpkin-macos-latest + path: ./ + + - name: Upload macOS executable to release + run: | + gh release upload ${{ steps.create-release.outputs.release-id }} ./pumpkin --repo ${{ env.NIGHTLY_REPO }} + env: + GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} + + # Publish the release + - name: Publish as latest + run: | + gh api \ + --method PATCH \ + -H "Accept: application/vnd.github+json" \ + "/repos/${NIGHTLY_REPO}/releases/${RELEASE_ID}" \ + -F draft=false -F prerelease=true + env: + GITHUB_TOKEN: ${{ secrets.COMMIT_REPO_TOKEN }} + RELEASE_ID: ${{ steps.create-release.outputs.release-id }}