Skip to content

Commit

Permalink
Change: RUNNER_TEMPを使う
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Dec 3, 2024
1 parent 96d61c1 commit 1124829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,14 +187,14 @@ jobs:
uses: actions/download-artifact@v4
with:
pattern: updated-snapshots-*
path: /tmp/patches
path: ${{ env.RUNNER_TEMP }}/patches
merge-multiple: true

- name: Commit updated snapshots
id: commit-updated-snapshots
run: |
# パッチを適用
for patch in /tmp/patches/*.diff; do
for patch in ${{ env.RUNNER_TEMP }}/patches/*.diff; do
git apply --allow-empty $patch
rm $patch
done
Expand Down

0 comments on commit 1124829

Please sign in to comment.