Skip to content

Commit

Permalink
Merge branch 'main' into feat/background
Browse files Browse the repository at this point in the history
  • Loading branch information
thombruce committed Nov 28, 2023
2 parents a78a431 + 4556db7 commit 8e55e8c
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 6 deletions.
45 changes: 42 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,21 @@ jobs:

steps:
- uses: actions/checkout@v3
# with:
# lfs: 'true'

# https://github.com/actions/checkout/issues/165#issuecomment-657673315
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
lfs: 'true'
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust }}
Expand All @@ -40,8 +53,21 @@ jobs:

steps:
- uses: actions/checkout@v3
# with:
# lfs: 'true'

# https://github.com/actions/checkout/issues/165#issuecomment-657673315
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
lfs: 'true'
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust }}
Expand All @@ -58,8 +84,21 @@ jobs:

steps:
- uses: actions/checkout@v3
# with:
# lfs: 'true'

# https://github.com/actions/checkout/issues/165#issuecomment-657673315
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
lfs: 'true'
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust }}
Expand Down
45 changes: 42 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,21 @@ jobs:
- uses: olegtarasov/[email protected]
id: get_version
- uses: actions/checkout@v3
# with:
# lfs: 'true'

# https://github.com/actions/checkout/issues/165#issuecomment-657673315
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
lfs: 'true'
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust }}
Expand Down Expand Up @@ -68,8 +81,21 @@ jobs:
- uses: olegtarasov/[email protected]
id: get_version
- uses: actions/checkout@v3
# with:
# lfs: 'true'

# https://github.com/actions/checkout/issues/165#issuecomment-657673315
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
lfs: 'true'
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust }}
Expand Down Expand Up @@ -113,8 +139,21 @@ jobs:
- uses: olegtarasov/[email protected]
id: get_version
- uses: actions/checkout@v3
# with:
# lfs: 'true'

# https://github.com/actions/checkout/issues/165#issuecomment-657673315
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
lfs: 'true'
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust }}
Expand Down

0 comments on commit 8e55e8c

Please sign in to comment.