Commit f156439 1 parent db6c4d0 commit f156439 Copy full SHA for f156439
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,11 @@ jobs:
41
41
- name : Get data from artifact
42
42
id : get-data
43
43
run : |
44
- echo ::set-output name= pull_id:: $(</tmp/migration-sql-data/pull-request-id)
44
+ echo " pull_id= $(</tmp/migration-sql-data/pull-request-id)" >> $GITHUB_OUTPUT
45
45
if [ -f /tmp/migration-sql-data/upgrade.sql ]; then
46
46
sql_command=$(</tmp/migration-sql-data/upgrade.sql)
47
47
if [ ! -z "$sql_command" ] ; then
48
- echo ::set-output name= sql:: $sql_command
48
+ echo " sql= $sql_command" >> $GITHUB_OUTPUT
49
49
fi
50
50
fi
51
51
Original file line number Diff line number Diff line change 27
27
- name : Check if any migrations changed
28
28
id : migrations-changed
29
29
run : |
30
- echo ::set-output name= changed:: ${{ steps.get-changed-files.outputs.files_created != '[]' || steps.get-changed-files.outputs.files_updated != '[]' || steps.get-changed-files.outputs.files_deleted != '[]' }}
30
+ echo changed= ${{ steps.get-changed-files.outputs.files_created != '[]' || steps.get-changed-files.outputs.files_updated != '[]' || steps.get-changed-files.outputs.files_deleted != '[]' }} >> $GITHUB_OUTPUT
31
31
32
32
- name : Setup venv and config file
33
33
if : steps.migrations-changed.outputs.changed == 'true'
You can’t perform that action at this time.
0 commit comments