diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 21:36:58 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2024-09-20 21:36:58 -0400 |
commit | 7ec42f61b0bb9a9ad337c1882e7794c2ab849890 (patch) | |
tree | 62bd365eed1d940f43965a66076a82097017315b /.github | |
parent | 122aae364d60f4bf05e76cb04a97dcf3b33d4a78 (diff) |
.github/workflows/release.yml: fix syntax
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d038235..c0c1028 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - fetch-depth: 0 + with: + fetch-depth: 0 - uses: actions/setup-go@v5 with: go-version: '1.23' |