-
Notifications
You must be signed in to change notification settings - Fork 10
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
Showing
5 changed files
with
167 additions
and
2 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,95 @@ | ||
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: Download required assemblies | ||
id: download-assemblies | ||
uses: KSP-RO/BuildTools/download-assemblies@master | ||
with: | ||
KSP_ZIP_PASSWORD: ${{ secrets.KSP_ZIP_PASSWORD }} | ||
|
||
- name: Update AssemblyInfo | ||
uses: KSP-RO/BuildTools/update-assembly-info@master | ||
with: | ||
path: ${GITHUB_WORKSPACE}/Source/Properties/AssemblyInfo.cs | ||
tag: ${{ github.event.release.tag_name }} | ||
|
||
- name: Build mod solution | ||
shell: bash | ||
env: | ||
TAG_STRING: ${{ github.event.release.tag_name }} | ||
run: | | ||
rm -f ${GITHUB_WORKSPACE}/GameData/ROHeatshields/Plugins/*.dll | ||
msbuild /p:Configuration=Release /p:ReferencePath="${{ steps.download-assemblies.outputs.ksp-dll-path }}" ${GITHUB_WORKSPACE}/Source/ROHeatshields.sln | ||
cp -v ${GITHUB_WORKSPACE}/Source/obj/x64/Release/ROHeatshields.dll ${GITHUB_WORKSPACE}/GameData/ROHeatshields/Plugins/ROHeatshields.dll | ||
- name: Update version file | ||
uses: KSP-RO/BuildTools/update-version-file@master | ||
with: | ||
tag: ${{ github.event.release.tag_name }} | ||
path: ${GITHUB_WORKSPACE}/GameData/ROHeatshields/ROHeatshields.version | ||
|
||
- name: Assemble release | ||
id: assemble-release | ||
run: | | ||
RELEASE_DIR="${RUNNER_TEMP}/release" | ||
echo "Release dir: ${RELEASE_DIR}" | ||
echo "Release zip: ${RELEASE_DIR}/ROHeatshields-${{ 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 "${GITHUB_WORKSPACE}/README.md" "${RELEASE_DIR}/README.md" | ||
cp -v "${GITHUB_WORKSPACE}/LICENSE" "${RELEASE_DIR}/LICENSE" | ||
cd ${RELEASE_DIR} | ||
zip -r ROHeatshields-${{ github.event.release.tag_name }}.zip GameData README.md LICENSE | ||
- 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 }}/ROHeatshields-${{ github.event.release.tag_name }}.zip | ||
asset_name: ROHeatshields-${{ 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 new version file | ||
shell: bash | ||
env: | ||
TAG_STRING: ${{ github.event.release.tag_name }} | ||
run: | | ||
RELEASEBRANCH=${{ env.tagged_branch }} | ||
git add "${GITHUB_WORKSPACE}/GameData/ROHeatshields/ROHeatshields.version" | ||
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,65 @@ | ||
# 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, CI ] | ||
pull_request: | ||
branches: [ master, CI ] | ||
|
||
# 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: | ||
check-secret: | ||
uses: KSP-RO/BuildTools/.github/workflows/check-secret.yml@master | ||
secrets: | ||
KSP_ZIP_PASSWORD: ${{ secrets.KSP_ZIP_PASSWORD }} | ||
|
||
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: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 100 | ||
|
||
- name: Download required assemblies | ||
id: download-assemblies | ||
uses: KSP-RO/BuildTools/download-assemblies@master | ||
with: | ||
KSP_ZIP_PASSWORD: ${{ secrets.KSP_ZIP_PASSWORD }} | ||
|
||
- name: Build mod solution | ||
run: | | ||
rm -f ${GITHUB_WORKSPACE}/GameData/ROHeatshields/Plugins/*.dll | ||
msbuild /p:Configuration=Release /p:ReferencePath="${{ steps.download-assemblies.outputs.ksp-dll-path }}" ${GITHUB_WORKSPACE}/Source/ROHeatshields.sln | ||
cp -v ${GITHUB_WORKSPACE}/Source/obj/x64/Release/ROHeatshields.dll ${GITHUB_WORKSPACE}/GameData/ROHeatshields/Plugins/ROHeatshields.dll | ||
- 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 "${GITHUB_WORKSPACE}/README.md" "${RELEASE_DIR}/README.md" | ||
cp -v "${GITHUB_WORKSPACE}/LICENSE" "${RELEASE_DIR}/LICENSE" | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: ROHeatshields | ||
path: ${{ steps.assemble-release.outputs.release-dir }} |
Binary file not shown.
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
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