Skip to content

Commit

Permalink
Merge branch 'feature-webserver' of github.com:Yamato-Security/takajo…
Browse files Browse the repository at this point in the history
… into feature-webserver
  • Loading branch information
nishikawaakira committed Oct 20, 2024
2 parents b162552 + 6341c5c commit b1b5d83
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
Copy-Item -Path pcre64.dll -Destination release-binaries/
Copy-Item -Path sqlite3_64.dll -Destination release-binaries/
Copy-Item -Path templates -Destination release-binaries/ -Recurse
mkdir -p release-binaries/src/takajopkg/web/
Copy-Item -Path src/takajopkg/web/static -Destination release-binaries/src/takajopkg/web/ -Recurse
New-Item -Path release-binaries/src/takajopkg/web/static/js/common.js -ItemType file
- name: Package and Zip - Unix
if: matrix.os != 'windows-latest'
Expand All @@ -60,6 +63,10 @@ jobs:
cp takajo release-binaries/
cp mitre-attack.json release-binaries/
cp -r templates release-binaries/
mkdir -p release-binaries/src/takajopkg/web/
cp -r src/takajopkg/web/static release-binaries/src/takajopkg/web/
mkdir -p release-binaries/src/takajopkg/web/static/js
touch release-binaries/src/takajopkg/web/static/js/common.js
case ${{ matrix.os }} in
'ubuntu-latest')
mv release-binaries/takajo release-binaries/takajo-${{ github.event.inputs.release_ver }}-lin-x64-gnu ;;
Expand Down

0 comments on commit b1b5d83

Please sign in to comment.