Skip to content

Commit

Permalink
ci: assign more descriptive names to the GitHub Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lvaylet committed May 17, 2024
1 parent 2f312f0 commit 2a290b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-and-push-to-gcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
GCR_PROJECT_ID: ${{ secrets.GCR_PROJECT_ID }}
CLOUDBUILD_PROJECT_ID: ${{ secrets.CLOUDBUILD_PROJECT_ID }}
VERSION: ${{ steps.check-tag.outputs.match == 'true' && steps.check-tag.outputs.version || github.event.pull_request.head.sha || github.sha }}
# TODO: Pass the Python version too, for the `PYTHON_VERSION` build argument of the Dockerfile.

- name: Build Docker container and publish on GCR [latest]
run: make cloud_build || true
Expand All @@ -52,3 +53,4 @@ jobs:
GCR_PROJECT_ID: ${{ secrets.GCR_PROJECT_ID }}
CLOUDBUILD_PROJECT_ID: ${{ secrets.CLOUDBUILD_PROJECT_ID }}
VERSION: latest
# TODO: Pass the Python version too, for the `PYTHON_VERSION` build argument of the Dockerfile.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: deploy
name: Deploy to Cloud Run

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: release
name: Release to PyPI

on:
push:
Expand Down

0 comments on commit 2a290b2

Please sign in to comment.