File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments