Skip to content

Commit

Permalink
chore: enable git-lfs in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Jan 31, 2025
1 parent 663657d commit 0775f85
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
# Allows JSR to authenticate with GitHub
id-token: write
steps:
- name: Install git-lfs
run: |
apt-get update
apt-get install -y git-lfs
- uses: actions/checkout@v4
with:
lfs: 'true'
Expand Down Expand Up @@ -91,7 +95,14 @@ jobs:
container:
image: rust:1.82.0
steps:
- name: Install git-lfs
run: |
apt-get update
apt-get install -y git-lfs
- uses: actions/checkout@v4
with:
lfs: 'true'

- name: Build
env:
Expand Down Expand Up @@ -213,7 +224,14 @@ jobs:
if: runner.os == 'macOS'
uses: douglascamata/setup-docker-macos-action@v1-alpha

- name: Install git-lfs
run: |
apt-get update
apt-get install -y git-lfs
- uses: actions/checkout@v4
with:
lfs: 'true'

- name: Set outputs
id: vars
Expand Down Expand Up @@ -326,7 +344,14 @@ jobs:
needs: [binaries, docker]
runs-on: ubuntu-24.04
steps:
- name: Install git-lfs
run: |
apt-get update
apt-get install -y git-lfs
- uses: actions/checkout@v4
with:
lfs: 'true'

- uses: ./.github/actions/docker-setup
with:
Expand Down

0 comments on commit 0775f85

Please sign in to comment.