Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 4.3-rc.1 #2

Merged
merged 1 commit into from
Nov 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ jobs:

- [Source code](https://github.com/Redot-Engine/redot-engine/releases/tag/redot-${{ env.VERSION }})
- [Snap Store](https://snapcraft.io/redot)

<!-- - [FlatHub](https://flathub.org/apps/details/org.redotengine.Redot) -->
draft: false
prerelease: ${{ startsWith(github.ref_name, 'v') && contains(github.ref, 'beta') }}
prerelease: ${{ startsWith(github.ref_name, 'v') && (contains(github.ref, 'beta') || contains(github.ref, 'rc')) }}
files: |
Redot.flatpak/Redot.flatpak
Redot.snap/Redot.snap
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ Choose one of the following download methods:
- **Manual Download**:

Visit
[this release page](https://github.com/Redot-Engine/org.redotengine.Redot/releases/tag/v4.3-beta.3)
[this release page](https://github.com/Redot-Engine/org.redotengine.Redot/releases/tag/v4.3-rc.1)
and download the file named `Redot.flatpak`.

- **Download via `curl`**:

```bash
curl https://github.com/Redot-Engine/org.redotengine.Redot/releases/download/v4.3-beta.3/Redot.flatpak > Redot.flatpak
curl https://github.com/Redot-Engine/org.redotengine.Redot/releases/download/v4.3-rc.1/Redot.flatpak > Redot.flatpak
```

**2. Install the Flatpak:**
Expand Down
8 changes: 4 additions & 4 deletions org.redotengine.Redot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ modules:
sources:
# Source code tarball
- type: archive
sha256: 582016a7c2ddc72924274699b8e4db5788c636cb88f563964d94dc97bf258bc7
url: https://github.com/Redot-Engine/redot-engine/archive/refs/tags/redot-4.3-beta.3.tar.gz
sha256: ae1afd55891536ee61eb988e05aaaf7d737d6bd4e21c131b1b5feb7f886dd14b
url: https://github.com/Redot-Engine/redot-engine/archive/refs/tags/redot-4.3-rc.1.tar.gz

# Binary tarball
- type: archive
sha256: c6010a7db9b838349ffb8b2043a5958f49d4c880579fdbcf56ceb2c96d6c9657
url: https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-beta.3/Redot_v4.3-beta.3_linux.x86_64.zip
sha256: 7c98c3dc88e8a7a802efd4f6dc704b83935da30291291d267d7d31077301f820
url: https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.1/Redot_v4.3-rc.1_linux.x86_64.zip

- type: script
dest-filename: redot.sh
Expand Down
2 changes: 1 addition & 1 deletion snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ parts:

redot:
plugin: dump
source: https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-beta.3/Redot_v4.3-beta.3_linux.x86_64.zip
source: https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-rc.1/Redot_v4.3-rc.1_linux.x86_64.zip
organize:
Redot_*: redot
stage:
Expand Down
Loading