Skip to content

Commit

Permalink
Add comments and update workflows to use tag properly
Browse files Browse the repository at this point in the history
  • Loading branch information
ichengchang committed Jul 23, 2024
1 parent fef0c58 commit f4dce5d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/actions/get-app-context/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
# - First 7 characters of App SHA.
# - PART:
# - The part of the version which was bumped.
# - REPOSITORY_NAME:
# - Repository name:
# - The name of the GitHub repository where the action is running.
# - REPOSITORY_OWNER:
# - Repository owner:
# - The owner of the GitHub repository.
# - REPOSITORY_URL:
# - Repository URL:
# - The URL to the GitHub repository.
# - VERSION_FILE_PATH:
# - Version file path:
# - The version file within the repository where the app version is specified.
# - VERSION_LINE_PATTERN:
# - Version line pattern:
# - The regex pattern used to identify the version line in the version file.
# - VERSION_LINE_MATCH:
# - Version line match:
# - The matched version line captured from the version file based on the specified pattern.
#
# After successfully running this action, the following environment variables are available for use in subsequent steps within the same job:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/compute-app-context.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
# - First 7 characters of App SHA.
# - PART:
# - The part of the version which was bumped.
# - REPOSITORY_NAME:
# - Repository name:
# - The name of the GitHub repository where the action is running.
# - REPOSITORY_OWNER:
# - Repository owner:
# - The owner of the GitHub repository.
# - REPOSITORY_URL:
# - Repository URL:
# - The URL to the GitHub repository.
# - VERSION_FILE_PATH:
# - Version file path:
# - The version file within the repository where the app version is specified.
# - VERSION_LINE_PATTERN:
# - Version line pattern:
# - The regex pattern used to identify the version line in the version file.
# - VERSION_LINE_MATCH:
# - Version line match:
# - The matched version line captured from the version file based on the specified pattern.
#
name: Compute App Context
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.new-tag }}
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-python-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.new-tag }}
fetch-depth: 0

- name: Set up Python 3.8
Expand Down

0 comments on commit f4dce5d

Please sign in to comment.