Skip to content

Commit 0260ac2

Browse files
committed
Enable patience diff algorithm and clean up commented code 🤖
1 parent 535ce34 commit 0260ac2

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/cd.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,22 @@ jobs:
187187
- name: Build & publish
188188
run: cargo release minor --no-confirm --execute --allow-branch main
189189

190+
- name: Create temporary directory for artifacts
191+
run: mkdir -p ${{ runner.temp }}/artifacts
192+
190193
- name: Download all packaged artifacts
191194
uses: actions/download-artifact@v4
192195
with:
193196
pattern: git-ai-*-package
194-
path: packages
197+
path: ${{ runner.temp }}/artifacts
195198
merge-multiple: true
196199

200+
- name: Move artifacts to packages directory
201+
run: |
202+
mkdir -p packages
203+
# Move all artifacts from temp to packages directory
204+
mv ${{ runner.temp }}/artifacts/* packages/
205+
197206
- name: Get version
198207
id: app
199208
run: echo "version=$(cargo metadata --no-deps --format-version 1 | jq -r '.packages[0].version')" >> $GITHUB_OUTPUT
@@ -246,4 +255,4 @@ jobs:
246255
packages/git-ai-*.tar.gz
247256
packages/git-ai-*.zip
248257
metadata.json
249-
generate_release_notes: true
258+
generate_release_notes: true

0 commit comments

Comments
 (0)