From 12fe260a53f0200ee0ea8a940b287619ec477f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20CHABANNE?= Date: Sat, 8 Jun 2024 14:15:57 +0200 Subject: [PATCH] test Actions Condition --- .gitea/workflows/actions.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/actions.yaml b/.gitea/workflows/actions.yaml index 61cd29c..1efd977 100644 --- a/.gitea/workflows/actions.yaml +++ b/.gitea/workflows/actions.yaml @@ -20,8 +20,15 @@ jobs: - name: Install dependencies run: | apt update - apt install tree -y + apt install tree zip -y - name: List files in the repository run: tree ${{ gitea.workspace }} + - name: Build + run : | + echo "Compilation step in progress" + - name: Deploy release + if: ${{ gitea.ref == 'refs/heads/master' }} + run: | + echo "Deploy artifacts on Gitea server" - name: Job's status run: echo "🍏 This job's status is ${{ job.status }}."