Update all other references to agb-entry

This commit is contained in:
Gwilym Kuiper 2021-08-15 20:40:48 +01:00
parent a2da434013
commit 00debe98e8
3 changed files with 9 additions and 9 deletions

View file

@ -1,9 +1,9 @@
name: Publish agb-entry name: Publish agb-macros
on: on:
push: push:
tags: tags:
- agb-entry/v* - agb-macros/v*
jobs: jobs:
build: build:
@ -15,6 +15,6 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Login to crates.io - name: Login to crates.io
run: cargo login ${{ secrets.CRATE_API }} run: cargo login ${{ secrets.CRATE_API }}
- name: Publish agb-entry - name: Publish agb-macros
run: cargo publish run: cargo publish
working-directory: ./agb-entry working-directory: ./agb-macros

View file

@ -38,8 +38,8 @@ jobs:
- name: Run Clippy on agb image converter - name: Run Clippy on agb image converter
working-directory: agb-image-converter working-directory: agb-image-converter
run: cargo clippy --verbose run: cargo clippy --verbose
- name: Run Clippy on agb entry - name: Run Clippy on agb macros
working-directory: agb-entry working-directory: agb-macros
run: cargo clippy --verbose run: cargo clippy --verbose
- name: Run Tests for agb in debug mode - name: Run Tests for agb in debug mode
working-directory: agb working-directory: agb

View file

@ -28,9 +28,9 @@ case "$PROJECT" in
DIRECTORY="agb-image-converter" DIRECTORY="agb-image-converter"
TAGNAME="agb-image-converter/v$VERSION" TAGNAME="agb-image-converter/v$VERSION"
;; ;;
agb-entry) agb-macros)
DIRECTORY="agb-entry" DIRECTORY="agb-macros"
TAGNAME="agb-entry/v$VERSION" TAGNAME="agb-macros/v$VERSION"
;; ;;
mgba-test-runner) mgba-test-runner)
DIRECTORY="mgba-test-runner" DIRECTORY="mgba-test-runner"