From 00debe98e85b3dc415c2c3310192fead4fd72256 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Sun, 15 Aug 2021 20:40:48 +0100 Subject: [PATCH] Update all other references to agb-entry --- .github/workflows/publish-agb-entry.yml | 8 ++++---- .github/workflows/rust.yml | 4 ++-- release.sh | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish-agb-entry.yml b/.github/workflows/publish-agb-entry.yml index c132ca60..53783780 100644 --- a/.github/workflows/publish-agb-entry.yml +++ b/.github/workflows/publish-agb-entry.yml @@ -1,9 +1,9 @@ -name: Publish agb-entry +name: Publish agb-macros on: push: tags: - - agb-entry/v* + - agb-macros/v* jobs: build: @@ -15,6 +15,6 @@ jobs: uses: actions/checkout@v2 - name: Login to crates.io run: cargo login ${{ secrets.CRATE_API }} - - name: Publish agb-entry + - name: Publish agb-macros run: cargo publish - working-directory: ./agb-entry \ No newline at end of file + working-directory: ./agb-macros \ No newline at end of file diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8f32d62b..aa504826 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -38,8 +38,8 @@ jobs: - name: Run Clippy on agb image converter working-directory: agb-image-converter run: cargo clippy --verbose - - name: Run Clippy on agb entry - working-directory: agb-entry + - name: Run Clippy on agb macros + working-directory: agb-macros run: cargo clippy --verbose - name: Run Tests for agb in debug mode working-directory: agb diff --git a/release.sh b/release.sh index bd45f28f..6083308d 100755 --- a/release.sh +++ b/release.sh @@ -28,9 +28,9 @@ case "$PROJECT" in DIRECTORY="agb-image-converter" TAGNAME="agb-image-converter/v$VERSION" ;; - agb-entry) - DIRECTORY="agb-entry" - TAGNAME="agb-entry/v$VERSION" + agb-macros) + DIRECTORY="agb-macros" + TAGNAME="agb-macros/v$VERSION" ;; mgba-test-runner) DIRECTORY="mgba-test-runner"