From cf67b99e552c28bc48149d223022bec6a2020be4 Mon Sep 17 00:00:00 2001 From: daichi_otani Date: Mon, 23 Feb 2026 23:31:36 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20=E3=83=AA=E3=83=AA=E3=83=BC?= =?UTF-8?q?=E3=82=B9=E3=83=AF=E3=83=BC=E3=82=AF=E3=83=95=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=81=AE=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - release.ymlのGitHub Actionsバージョンを更新(checkout@v6, upload-release-action@v2) Co-authored-by: Cursor --- .gitattributes | 3 ++- .github/workflows/release.yml | 9 ++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitattributes b/.gitattributes index 6e4a79d..8230131 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ /.gitattributes export-ignore /.github export-ignore -/.gitignore export-ignore \ No newline at end of file +/.gitignore export-ignore +/Tests export-ignore \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a1b431..5c69649 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,20 +1,23 @@ - name: Packaging for EC-CUBE Plugin + on: release: types: [ published ] + jobs: deploy: name: Build runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v6 + - name: Packaging run: | git archive HEAD --format=tar.gz > ../${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.tar.gz + - name: Upload binaries to release of TGZ - uses: svenstaro/upload-release-action@v1-release + uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{ runner.workspace }}/${{ github.event.repository.name }}-${{ github.event.release.tag_name }}.tar.gz From 3a5b36d331a07f7533fc28d5ff37b4f04701d7fa Mon Sep 17 00:00:00 2001 From: daichi_otani Date: Mon, 23 Feb 2026 23:35:25 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20doc=E3=83=95=E3=82=A9=E3=83=AB?= =?UTF-8?q?=E3=83=80=E3=82=92=E3=83=91=E3=83=83=E3=82=B1=E3=83=BC=E3=82=B8?= =?UTF-8?q?=E3=83=B3=E3=82=B0=E3=81=8B=E3=82=89=E9=99=A4=E5=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - .gitattributesに/docをexport-ignoreとして追加 Co-authored-by: Cursor --- .gitattributes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 8230131..00a95bd 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,5 @@ /.gitattributes export-ignore /.github export-ignore /.gitignore export-ignore -/Tests export-ignore \ No newline at end of file +/Tests export-ignore +/doc export-ignore \ No newline at end of file