mirror of
https://github.com/huderlem/porymap.git
synced 2026-04-26 07:48:05 -05:00
Add download links to INSTALL.md
This commit is contained in:
parent
658835bebd
commit
2b4eb213f7
14
.github/workflows/main.yml
vendored
14
.github/workflows/main.yml
vendored
|
|
@ -43,7 +43,7 @@ jobs:
|
||||||
os: [macos-latest, macos-13]
|
os: [macos-latest, macos-13]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
env:
|
env:
|
||||||
BUILD_NAME: porymap-${{ matrix.os }}-${{ github.ref_name }}
|
BUILD_NAME: porymap-${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
@ -86,6 +86,8 @@ jobs:
|
||||||
|
|
||||||
build-static-windows:
|
build-static-windows:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
env:
|
||||||
|
BUILD_NAME: porymap-windows
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
@ -138,18 +140,18 @@ jobs:
|
||||||
- name: Prep Release Directory
|
- name: Prep Release Directory
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
run: |
|
run: |
|
||||||
mkdir porymap-windows-${{ github.ref_name }}
|
mkdir $BUILD_NAME
|
||||||
cp release/porymap.exe porymap-windows-${{ github.ref_name }}/porymap.exe
|
cp release/porymap.exe $BUILD_NAME/porymap.exe
|
||||||
cp RELEASE-README.txt porymap-windows-${{ github.ref_name }}/README.txt
|
cp RELEASE-README.txt $BUILD_NAME/README.txt
|
||||||
|
|
||||||
- name: Bundle Release Directory
|
- name: Bundle Release Directory
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
run: powershell.exe -Command "Compress-Archive -Path porymap-windows-${{ github.ref_name }} -DestinationPath porymap-windows-${{ github.ref_name }}.zip"
|
run: powershell.exe -Command "Compress-Archive -Path $BUILD_NAME -DestinationPath $BUILD_NAME.zip"
|
||||||
|
|
||||||
- name: Create Release
|
- name: Create Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
with:
|
with:
|
||||||
files: porymap-windows-${{ github.ref_name }}.zip
|
files: $BUILD_NAME.zip
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,13 @@
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
porymap requires Qt 5.14.2 & C++11.
|
**Note**: For Windows and macOS, installation is not required to use Porymap. You can download the latest release to begin using Porymap immediately.
|
||||||
|
|
||||||
|
- [Download Porymap for Windows](https://github.com/huderlem/porymap/releases/latest/download/porymap-windows.zip).
|
||||||
|
- [Download Porymap for macOS latest (arm)](https://github.com/huderlem/porymap/releases/latest/download/porymap-macos-latest.zip).
|
||||||
|
- [Download Porymap for macOS 13 (intel)](https://github.com/huderlem/porymap/releases/latest/download/porymap-macos-13.zip).
|
||||||
|
|
||||||
|
|
||||||
|
For installation, Porymap requires Qt 5.14.2 & C++11.
|
||||||
|
|
||||||
## macOS
|
## macOS
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,4 +18,4 @@ Read [INSTALL.md](INSTALL.md) for instructions on how to compile Porymap from so
|
||||||
[pokeemerald]: https://github.com/pret/pokeemerald
|
[pokeemerald]: https://github.com/pret/pokeemerald
|
||||||
[pokefirered]: https://github.com/pret/pokefirered
|
[pokefirered]: https://github.com/pret/pokefirered
|
||||||
[changelog]: https://github.com/huderlem/porymap/blob/master/CHANGELOG.md
|
[changelog]: https://github.com/huderlem/porymap/blob/master/CHANGELOG.md
|
||||||
[releases]: https://github.com/huderlem/porymap/releases
|
[releases]: https://github.com/huderlem/porymap/releases/latest
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user