chore: archive react-app-internal as react-app folder

This commit is contained in:
barkstone2 2026-02-16 01:57:41 +09:00 committed by barkstone2
parent 83163febc6
commit 52f39eaaf7

View file

@ -23,7 +23,9 @@ jobs:
npm run build
- name: Archive react-app-internal
run: |
zip -r react-app.zip ./react-app-internal
tmpdir=$(mktemp -d)
cp -R ./react-app-internal "$tmpdir/react-app"
(cd "$tmpdir" && zip -r "$GITHUB_WORKSPACE/react-app.zip" react-app)
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}