Skip to content

Commit e985cf8

Browse files
authored
Revert "feat: add logging for app version retrieval in GitHub Actions"
1 parent 5fdb0fa commit e985cf8

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/private-elixir-library-w-git-ops.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -225,18 +225,12 @@ jobs:
225225
run: git config user.email '41898282+github-actions[bot]@users.noreply.github.com' ; git config user.name 'github-actions'
226226
- name: Retrieving the current app version
227227
id: original-app-info
228-
run: |
229-
echo "Retrieving original app version..."
230-
MIX_ENV=test mix git_ops.project_info --format github-actions
231-
echo "Original App Version: ${{ steps.original-app-info.outputs.app_version }}"
228+
run: MIX_ENV=test mix git_ops.project_info --format github-actions
232229
- name: Run mix git_ops.release
233230
run: MIX_ENV=test mix git_ops.release --yes --no-major || true
234231
- name: Checking for new app version
235232
id: app-info
236-
run: |
237-
echo "Retrieving new app version..."
238-
MIX_ENV=test mix git_ops.project_info --format github-actions
239-
echo "New App Version: ${{ steps.app-info.outputs.app_version }}"
233+
run: MIX_ENV=test mix git_ops.project_info --format github-actions
240234
- name: Building hex package
241235
if: ${{ steps.original-app-info.outputs.app_version != steps.app-info.outputs.app_version }}
242236
run: mix hex.build -o ${{ steps.app-info.outputs.app_name }}-${{ steps.app-info.outputs.app_version }}.tar

0 commit comments

Comments
 (0)