Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Workflows and rename ht command #13

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-deploy-on-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

deploy-production-default:
needs: build-production
name: Deploy to production
name: Deploy to production - default
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ghcr.io/mlibrary/${{ vars.IMAGE_NAME }}:${{ github.event.release.tag_name }}
Expand All @@ -28,7 +28,7 @@ jobs:

deploy-production-hathifiles:
needs: build-production
name: Deploy to production
name: Deploy to production - hathifiles
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ghcr.io/mlibrary/${{ vars.IMAGE_NAME }}:${{ github.event.release.tag_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

deploy-production-default:
needs: build-production
name: Deploy to production
name: Deploy to production - default
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ghcr.io/mlibrary/${{ vars.IMAGE_NAME }}:${{ github.event.inputs.tag }}
Expand All @@ -31,7 +31,7 @@ jobs:

deploy-production-hathifiles:
needs: build-production
name: Deploy to production
name: Deploy to production - hathifiles
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ghcr.io/mlibrary/${{ vars.IMAGE_NAME }}:${{ github.event.inputs.tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy-workshop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

deploy-workshop-default:
needs: build-unstable
name: Deploy to workshop
name: Deploy to workshop - default
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ${{ needs.build-unstable.outputs.image }}
Expand All @@ -30,7 +30,7 @@ jobs:

deploy-workshop-hathifiles:
needs: build-unstable
name: Deploy to workshop
name: Deploy to workshop - hathifiles
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1
with:
image: ${{ needs.build-unstable.outputs.image }}
Expand Down
4 changes: 2 additions & 2 deletions lib/aim/cli/hathi_trust.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def set_digitizer

module AIM
class CLI
desc "ht SUBCOMMAND", "commands related to the HathiTrust and Google Books project"
subcommand "ht", HathiTrust
desc "hathi_trust SUBCOMMAND", "commands related to the HathiTrust and Google Books project"
subcommand "hathi_trust", HathiTrust
end
end