1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

Merge pull request #3863 from J3fftw1/feature/preview-builds

This commit is contained in:
Sfiguz7 2023-06-24 13:38:59 +02:00 committed by GitHub
commit a78cc5114c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 76 additions and 0 deletions

View File

@ -44,3 +44,9 @@ jobs:
- name: Build with Maven
run: mvn package --file pom.xml
- name: Upload the artifact
uses: actions/upload-artifact@v2
with:
name: slimefun-${{ github.event.number }}
path: 'target/Slimefun v4.9-UNOFFICIAL.jar'

70
.github/workflows/preview-builds.yml vendored Normal file
View File

@ -0,0 +1,70 @@
name: Preview builds
on:
workflow_run:
workflows: ["Java CI"]
types:
- completed
permissions:
contents: read
pull-requests: write
jobs:
preview:
if: ${{ github.repository_owner == 'Slimefun' && github.event.workflow_run.conclusion == 'success' }}
name: Build and Publish the jar
runs-on: ubuntu-latest
steps:
# Kinda jank way to grab the PR and run ID
# However, not sure a better way
- name: Grab PR and run ID
uses: actions/github-script@v5
with:
script: |
const allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id,
});
for (const artifact of allArtifacts.data.artifacts) {
// Extract the PR number from the artifact name
const match = /^slimefun-(\d+)$/.exec(artifact.name);
if (match) {
require("fs").appendFileSync(
process.env.GITHUB_ENV,
`\nWORKFLOW_PR_ID=${match[1]}` +
`\nWORKFLOW_RUN_ID=${context.payload.workflow_run.id}`
);
break;
}
}
# Download the artifact from the build workflow
- uses: actions/download-artifact@v3
with:
name: slimefun-${{ env.WORKFLOW_PR_ID }}
- name: Upload to preview service
run: |
curl -v -X POST \
-H 'Authorization: ${{ secrets.PUBLISH_TOKEN }}' \
-H "X-Checksum: $(sha256sum 'target/Slimefun v4.9-UNOFFICIAL.jar' | awk '{print $1}')" \
--data-binary '@target/Slimefun v4.9-UNOFFICIAL.jar' \
https://preview-builds.walshy.dev/upload/Slimefun/${{ env.WORKFLOW_PR_ID }}/${{ env.WORKFLOW_RUN_ID }}
- name: Post comment
uses: marocchino/sticky-pull-request-comment@v2
with:
number: ${{ env.WORKFLOW_PR_ID }}
message: |
### Slimefun preview build
A Slimefun preview build is available for testing!
https://preview-builds.walshy.dev/download/Slimefun/${{ env.WORKFLOW_PR_ID }}/${{ env.WORKFLOW_RUN_ID }}
> **Note**: This is not a supported build and is only here for the purposes of testing.
> Do not run this on a live server and do not report bugs anywhere but this PR!