added LFS handling to GH Actions workflows

This commit is contained in:
Valmo Trindade
2024-11-25 03:02:36 -03:00
parent a9fed7b72c
commit 6157846a3c
4 changed files with 11 additions and 9 deletions

View File

@@ -18,7 +18,9 @@ jobs:
runs-on: ${{ matrix.arrays.os.tag }}
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true
- name: Install latest
uses: actions-rs/toolchain@v1
with:

View File

@@ -18,8 +18,10 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3
- name: Checkout Repo
uses: actions/checkout@v4
with:
lfs: true
- name: Setup HEMTT
uses: arma-actions/hemtt@v1
- name: Run HEMTT build

View File

@@ -15,7 +15,9 @@ jobs:
runs-on: ${{ matrix.arrays.os.tag }}
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
lfs: true
- name: Install latest
uses: actions-rs/toolchain@v1
with:

View File

@@ -22,11 +22,7 @@ ws = "0.9.2"
[dependencies.uuid]
version = "1.10.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
features = ["v4", "fast-rng", "macro-diagnostics"]
[lib]
name = "armatak"