-
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
Showing
4 changed files
with
104 additions
and
21 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
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 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Build] | ||
types: [completed] | ||
branches-ignore: | ||
- release | ||
|
||
jobs: | ||
release: | ||
name: Create release | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.workflow_run.head_branch }} | ||
fetch-depth: 0 | ||
lfs: false | ||
- name: Create release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.event.workflow_run.head_branch }} | ||
release_name: ${{ github.event.workflow_run.head_branch }} | ||
body_path: RELEASE.md | ||
draft: false | ||
prerelease: false | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
path: build | ||
merge-multiple: true | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
run-id: ${{ github.event.workflow_run.id }} | ||
- name: Upload Windows release assets | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: micromissiles-${{ github.event.workflow_run.head_branch }}-windows_x86_64.zip | ||
asset_path: build/build-StandaloneWindows64.zip | ||
asset_content_type: application/zip | ||
- name: Upload Darwin release assets | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_name: micromissiles-${{ github.event.workflow_run.head_branch }}-darwin.tar.gz | ||
asset_path: build/build-StandaloneOSX.tar.gz | ||
asset_content_type: application/gzip |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# micromissiles-unity | ||
|
||
## Instructions | ||
|
||
Download and extract the archive corresponding to your platform (Windows or Mac) from the binaries listed below. | ||
|
||
## Windows | ||
|
||
1. Download the zip file for Windows. | ||
2. Unzip the zip file and run the `.exe` file. | ||
|
||
## Mac | ||
|
||
1. Download the tarball for Darwin. | ||
2. Untar the tarball and run the app file. | ||
3. If you get a warning that Apple cannot check the application for malicious software: | ||
* Open `System Preferences`. | ||
* Navigate to `Privacy & Security`. | ||
* Click on `Open Anyway` to bypass Apple's developer check. |