From 7d94fc73f1e4b771dc5e5eb1f793f94533e494b3 Mon Sep 17 00:00:00 2001 From: Ren Tatsumoto Date: Thu, 14 Dec 2023 01:41:45 +0300 Subject: [PATCH] correctly name files --- .github/workflows/build-and-release.yaml | 12 ++++++------ README.md | 2 +- {yomitan-gtk => rikaitan-gtk}/main.go | 0 {yomitan => rikaitan}/main.go | 0 4 files changed, 7 insertions(+), 7 deletions(-) rename {yomitan-gtk => rikaitan-gtk}/main.go (100%) rename {yomitan => rikaitan}/main.go (100%) diff --git a/.github/workflows/build-and-release.yaml b/.github/workflows/build-and-release.yaml index 7074276..7d501a3 100644 --- a/.github/workflows/build-and-release.yaml +++ b/.github/workflows/build-and-release.yaml @@ -22,12 +22,12 @@ 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" @@ -35,15 +35,15 @@ jobs: - 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 }} diff --git a/README.md b/README.md index e6d1692..cb20ed0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/yomitan-gtk/main.go b/rikaitan-gtk/main.go similarity index 100% rename from yomitan-gtk/main.go rename to rikaitan-gtk/main.go diff --git a/yomitan/main.go b/rikaitan/main.go similarity index 100% rename from yomitan/main.go rename to rikaitan/main.go