From 6d019adb1d28a3355ee1fa6a3040fc4a55ba9a5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 24 Oct 2023 19:03:11 +0200 Subject: [PATCH] use with.args --- .gitea/workflows/release_preparation.yaml | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/release_preparation.yaml b/.gitea/workflows/release_preparation.yaml index 191ed6e..a2d078f 100644 --- a/.gitea/workflows/release_preparation.yaml +++ b/.gitea/workflows/release_preparation.yaml @@ -11,18 +11,15 @@ jobs: steps: - name: check out repository uses: https://github.com/actions/checkout@v4 - - name: read local files - run: ls -lah - - name: echo workspace env - run: echo ${{ gitea.workspace }} - name: run composer update to update composer.lock uses: docker://gitea.champs-libres.be/chill-project/chill-skeleton-basic/base-image:latest with: + # this is where we set the command to execute args: composer update -# - name: commit changed files -# uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 -# with: -# commit_message: "update composer.lock and file (automatic update)" -# commit_user_name: Action Bot -# commit_user_email: bot@chill.social -# + - name: commit changed files + uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "update composer.lock and file (automatic update)" + commit_user_name: Action Bot + commit_user_email: bot@chill.social +