-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enable LFS * Add optional LFS variable * Updated README to include use_git_lfs release option * Added GitHub documentation quota links and warnings
- Loading branch information
Showing
2 changed files
with
19 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 |
---|---|---|
|
@@ -11,6 +11,10 @@ env: | |
add_binaries_to_github_release: true | ||
#itch_target: <itch.io-username>/<game-name> | ||
|
||
# Before enabling LFS, please take a look at GitHub's documentation for costs and quota limits: | ||
# https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage | ||
use_git_lfs: false | ||
|
||
|
||
jobs: | ||
|
||
|
@@ -22,6 +26,8 @@ jobs: | |
- uses: olegtarasov/[email protected] | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: ${{ env.use_git_lfs }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: wasm32-unknown-unknown | ||
|
@@ -68,6 +74,8 @@ jobs: | |
- uses: olegtarasov/[email protected] | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: ${{ env.use_git_lfs }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-unknown-linux-gnu | ||
|
@@ -115,6 +123,8 @@ jobs: | |
- uses: olegtarasov/[email protected] | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: ${{ env.use_git_lfs }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-pc-windows-msvc | ||
|
@@ -158,6 +168,8 @@ jobs: | |
- uses: olegtarasov/[email protected] | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: ${{ env.use_git_lfs }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-apple-darwin | ||
|
@@ -202,6 +214,8 @@ jobs: | |
- uses: olegtarasov/[email protected] | ||
id: get_version | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: ${{ env.use_git_lfs }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: aarch64-apple-darwin | ||
|
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