File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ jobs:
3838 curl -s "https://api.github.com/repos/CubeEngine/modules-extra/actions/workflows/publish.yaml/runs?per_page=1&status=completed&branch=master" | jq '.workflow_runs [0] .run_number' > latest_cubeengine_extra
3939
4040 if cmp -s last_cubeengine_core latest_cubeengine_core && cmp -s last_cubeengine_main latest_cubeengine_main && cmp -s last_cubeengine_extra latest_cubeengine_extra; then
41- echo ::set-output name= modified:: false
41+ echo " modified= false" >> $GITHUB_OUTPUT
4242 echo No New CubeEngine Build $(cat last_cubeengine_core) $(cat last_cubeengine_main) $(cat last_cubeengine_extra)! Skipping
4343 else
44- echo ::set-output name= modified:: true
45- echo New CubeEngine Build: $(cat last_cubeengine_core) $(cat last_cubeengine_main) $(cat last_cubeengine_extra) to $(cat latest_cubeengine_core) $(cat latest_cubeengine_main) $(cat latest_cubeengine_extra)
44+ echo " modified= true" >> $GITHUB_OUTPUT
45+ echo " New CubeEngine Build: $(cat last_cubeengine_core) $(cat last_cubeengine_main) $(cat last_cubeengine_extra) to $(cat latest_cubeengine_core) $(cat latest_cubeengine_main) $(cat latest_cubeengine_extra)"
4646 mv -f latest_cubeengine_core last_cubeengine_core
4747 mv -f latest_cubeengine_main last_cubeengine_main
4848 mv -f latest_cubeengine_extra last_cubeengine_extra
6464 run : |
6565 mkdir data
6666 chmod 777 data
67- docker- compose up & sleep 30 && docker- compose stop -t 300 && docker- compose down
67+ docker compose up & sleep 30 && docker compose stop -t 300 && docker compose down
6868 - name : Commit & Push
6969 if : steps.ce-check.outputs.modified == 'true'
7070 run : |
You can’t perform that action at this time.
0 commit comments