-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d512fc1
commit 4abd545
Showing
10 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: "Attach Release Artifacts" | ||
|
||
# Controls when the action will run. | ||
on: | ||
release: | ||
types: [published] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
attach-release-artifacts: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- name: Get Branch | ||
shell: bash | ||
run: | | ||
releaseBranch=${{ github.event.release.target_commitish }} | ||
echo "Found branch ${releaseBranch}" | ||
echo "tagged_branch=${releaseBranch}" >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ env.tagged_branch }} | ||
|
||
- name: Update version file | ||
uses: KSP-RO/BuildTools/update-version-file@master | ||
with: | ||
tag: ${{ github.event.release.tag_name }} | ||
path: ${GITHUB_WORKSPACE}/GameData/RONoCareer/RONoCareer.version | ||
|
||
- name: Update changelog file | ||
uses: KSP-RO/BuildTools/process-changelog@master | ||
with: | ||
tag: ${{ github.event.release.tag_name }} | ||
body: ${{ github.event.release.body }} | ||
path: ${GITHUB_WORKSPACE}/GameData/RONoCareer/changelog.cfg | ||
|
||
- name: Assemble release | ||
id: assemble-release | ||
run: | | ||
RELEASE_DIR="${RUNNER_TEMP}/release" | ||
echo "Release dir: ${RELEASE_DIR}" | ||
echo "Release zip: ${RELEASE_DIR}/RONoCareer-${{ github.event.release.tag_name }}.zip" | ||
mkdir -v "${RELEASE_DIR}" | ||
echo "::set-output name=release-dir::${RELEASE_DIR}" | ||
cp -v -R "${GITHUB_WORKSPACE}/GameData" "${RELEASE_DIR}" | ||
cp -v -R "${GITHUB_WORKSPACE}/LICENSE.md" "${RELEASE_DIR}/GameData/RONoCareer/LICENSE.md" | ||
cp -v -R "${GITHUB_WORKSPACE}/README.md" "${RELEASE_DIR}/GameData/RONoCareer/README.md" | ||
cd ${RELEASE_DIR} | ||
zip -r RONoCareer-${{ github.event.release.tag_name }}.zip GameData | ||
- name: Upload package to release | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ${{ steps.assemble-release.outputs.release-dir }}/RONoCareer-${{ github.event.release.tag_name }}.zip | ||
asset_name: RONoCareer-${{ github.event.release.tag_name }}.zip | ||
asset_content_type: application/zip | ||
|
||
- name: Setup git config | ||
run: | | ||
git config user.name "GitHub Actions Bot" | ||
git config user.email "<>" | ||
- name: Commit changes | ||
shell: bash | ||
env: | ||
TAG_STRING: ${{ github.event.release.tag_name }} | ||
run: | | ||
RELEASEBRANCH=${{ env.tagged_branch }} | ||
git add "${GITHUB_WORKSPACE}/GameData/RONoCareer/RONoCareer.version" | ||
git add "${GITHUB_WORKSPACE}/GameData/RONoCareer/changelog.cfg" | ||
git commit -m "Update version to $TAG_STRING" | ||
git push origin $RELEASEBRANCH | ||
git tag $TAG_STRING $RELEASEBRANCH --force | ||
git push origin $TAG_STRING --force |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: build | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
validate-cfg-files: | ||
uses: KSP-RO/BuildTools/.github/workflows/validate-cfg-files.yml@master | ||
|
||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
needs: [check-secret] | ||
if: needs.check-secret.outputs.has-password == 'true' | ||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 100 | ||
|
||
- name: Build metadata | ||
uses: KSP-RO/BuildTools/update-version-file@master | ||
with: | ||
path: ${GITHUB_WORKSPACE}/GameData/RONoCareer/RONoCareer.version | ||
tag: "v1.99.0.0" | ||
|
||
- name: Assemble release | ||
id: assemble-release | ||
run: | | ||
RELEASE_DIR="${RUNNER_TEMP}/release" | ||
echo "Release dir: ${RELEASE_DIR}" | ||
mkdir -v "${RELEASE_DIR}" | ||
echo "::set-output name=release-dir::${RELEASE_DIR}" | ||
cp -v -R "${GITHUB_WORKSPACE}/GameData" "${RELEASE_DIR}" | ||
cp -v -R "${GITHUB_WORKSPACE}/LICENSE.md" "${RELEASE_DIR}/GameData/RONoCareer/LICENSE.md" | ||
cp -v -R "${GITHUB_WORKSPACE}/README.md" "${RELEASE_DIR}/GameData/RONoCareer/README.md" | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: RONoCareer | ||
path: ${{ steps.assemble-release.outputs.release-dir }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Comment on pull request | ||
on: | ||
workflow_run: | ||
workflows: ['build'] | ||
types: [completed] | ||
jobs: | ||
pr_comment: | ||
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/github-script@v5 | ||
with: | ||
# This snippet is public-domain, taken from | ||
# https://github.com/oprypin/nightly.link/blob/master/.github/workflows/pr-comment.yml | ||
script: | | ||
async function upsertComment(owner, repo, issue_number, purpose, body) { | ||
const {data: comments} = await github.rest.issues.listComments( | ||
{owner, repo, issue_number}); | ||
const marker = `<!-- bot: ${purpose} -->`; | ||
body = marker + "\n" + body; | ||
const existing = comments.filter((c) => c.body.includes(marker)); | ||
if (existing.length > 0) { | ||
const last = existing[existing.length - 1]; | ||
core.info(`Updating comment ${last.id}`); | ||
await github.rest.issues.updateComment({ | ||
owner, repo, | ||
body, | ||
comment_id: last.id, | ||
}); | ||
} else { | ||
core.info(`Creating a comment in issue / PR #${issue_number}`); | ||
await github.rest.issues.createComment({issue_number, body, owner, repo}); | ||
} | ||
} | ||
const {owner, repo} = context.repo; | ||
const run_id = ${{github.event.workflow_run.id}}; | ||
const pull_requests = ${{ toJSON(github.event.workflow_run.pull_requests) }}; | ||
if (!pull_requests.length) { | ||
return core.error("This workflow doesn't match any pull requests!"); | ||
} | ||
const artifacts = await github.paginate( | ||
github.rest.actions.listWorkflowRunArtifacts, {owner, repo, run_id}); | ||
if (!artifacts.length) { | ||
return core.error(`No artifacts found`); | ||
} | ||
let body = `Download the artifacts for this pull request:\n`; | ||
for (const art of artifacts) { | ||
body += `\n* [${art.name}.zip](https://nightly.link/${owner}/${repo}/actions/artifacts/${art.id}.zip)`; | ||
} | ||
core.info("Review thread message body:", body); | ||
for (const pr of pull_requests) { | ||
await upsertComment(owner, repo, pr.number, | ||
"nightly-link", body); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
# Files generated by our build system include the tree, releases, and version info | ||
ROUtils-*.zip | ||
|
||
# All DLLs except RP0InstallChecker are ignored. We're using this to show a message to the player about installing RP-1 wrong. | ||
*.dll | ||
|
||
## Ignore Visual Studio temporary files, build results, and | ||
## files generated by popular Visual Studio add-ons. | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
.vs/ | ||
ROUtils.userprefs | ||
|
||
# Build results | ||
|
||
[Dd]ebug/ | ||
[Rr]elease/ | ||
x64/ | ||
build/ | ||
[Bb]in/ | ||
[Oo]bj/ | ||
|
||
# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets | ||
!packages/*/build/ | ||
|
||
# MSTest test Results | ||
[Tt]est[Rr]esult*/ | ||
[Bb]uild[Ll]og.* | ||
|
||
*_i.c | ||
*_p.c | ||
*.ilk | ||
*.meta | ||
*.obj | ||
*.pch | ||
*.pdb | ||
*.pgc | ||
*.pgd | ||
*.rsp | ||
*.sbr | ||
*.tlb | ||
*.tli | ||
*.tlh | ||
*.tmp | ||
*.tmp_proj | ||
*.log | ||
*.vspscc | ||
*.vssscc | ||
.builds | ||
*.pidb | ||
*.log | ||
*.scc | ||
|
||
# Visual C++ cache files | ||
ipch/ | ||
*.aps | ||
*.ncb | ||
*.opensdf | ||
*.sdf | ||
*.cachefile | ||
|
||
# Visual Studio profiler | ||
*.psess | ||
*.vsp | ||
*.vspx | ||
|
||
# Guidance Automation Toolkit | ||
*.gpState | ||
|
||
# ReSharper is a .NET coding add-in | ||
_ReSharper*/ | ||
*.[Rr]e[Ss]harper | ||
|
||
# TeamCity is a build add-in | ||
_TeamCity* | ||
|
||
# DotCover is a Code Coverage Tool | ||
*.dotCover | ||
|
||
# NCrunch | ||
*.ncrunch* | ||
.*crunch*.local.xml | ||
|
||
# Installshield output folder | ||
[Ee]xpress/ | ||
|
||
# DocProject is a documentation generator add-in | ||
DocProject/buildhelp/ | ||
DocProject/Help/*.HxT | ||
DocProject/Help/*.HxC | ||
DocProject/Help/*.hhc | ||
DocProject/Help/*.hhk | ||
DocProject/Help/*.hhp | ||
DocProject/Help/Html2 | ||
DocProject/Help/html | ||
|
||
# Click-Once directory | ||
publish/ | ||
|
||
# Publish Web Output | ||
*.Publish.xml | ||
*.pubxml | ||
|
||
# NuGet Packages Directory | ||
packages/ | ||
|
||
# Windows Azure Build Output | ||
csx | ||
*.build.csdef | ||
|
||
# Windows Store app package directory | ||
AppPackages/ | ||
|
||
# Others | ||
sql/ | ||
*.Cache | ||
ClientBin/ | ||
[Ss]tyle[Cc]op.* | ||
~$* | ||
*~ | ||
*.dbmdl | ||
*.[Pp]ublish.xml | ||
*.pfx | ||
*.publishsettings | ||
|
||
# RIA/Silverlight projects | ||
Generated_Code/ | ||
|
||
# Backup & report files from converting an old project file to a newer | ||
# Visual Studio version. Backup files are not needed, because we have git ;-) | ||
_UpgradeReport_Files/ | ||
Backup*/ | ||
UpgradeLog*.XML | ||
UpgradeLog*.htm | ||
|
||
# SQL Server files | ||
App_Data/*.mdf | ||
App_Data/*.ldf | ||
|
||
# ========================= | ||
# Windows detritus | ||
# ========================= | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Mac crap | ||
.DS_Store |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
RONoCareer | ||
{ | ||
Installed = true | ||
} | ||
|
||
@RONoCareer:FOR[RONoCareer] | ||
{ | ||
MM = active | ||
} |
Oops, something went wrong.