Skip to content

Commit

Permalink
correctly name files
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsumoto-ren committed Dec 13, 2023
1 parent d85e709 commit 7d94fc7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ jobs:
- name: Build for Linux
run: |
# Create build directory
build_dir="yomitan-import-linux"
build_dir="rikaitan-import-linux"
mkdir -p "$build_dir"
# Build
go build -o "$build_dir" ./yomitan
go build -o "$build_dir" ./yomitan-gtk
go build -o "$build_dir" ./rikaitan
go build -o "$build_dir" ./rikaitan-gtk
# Zip the build directory
zip -r "$build_dir.zip" "$build_dir"
- name: Upload Release Artifacts
uses: actions/upload-artifact@v3
with:
path: yomitan-import-linux.zip
name: yomitan-import-linux
path: rikaitan-import-linux.zip
name: rikaitan-import-linux

- name: Release on Tag Creation
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
yomitan-import-linux.zip
rikaitan-import-linux.zip
draft: true
generate_release_notes: true
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ library used does not support such paths. Attempts to convert dictionaries store
may cause the conversion process to fail.

## Related Projects
- [stephenmk/jitenbot](https://github.com/stephenmk/jitenbot): A program for scraping Japanese dictionary websites and compiling the scraped data into compact dictionary file formats, including Yomitan dictionaries.
- [stephenmk/jitenbot](https://github.com/stephenmk/jitenbot): A program for scraping Japanese dictionary websites and compiling the scraped data into compact dictionary file formats, including Rikaitan dictionaries.
File renamed without changes.
File renamed without changes.

0 comments on commit 7d94fc7

Please sign in to comment.