From 1e609d967c1e7243df0806f76ae3336cb5e86b75 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Thu, 27 Jul 2023 22:29:12 +0200 Subject: [PATCH] .gitea/workflows/deploy.yml aktualisiert --- .gitea/workflows/deploy.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6f3be49..819d12e 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -5,17 +5,14 @@ on: - master jobs: deploy: - needs: build runs-on: ubuntu-latest steps: - name: Get code uses: actions/checkout@v3 - - name: Get build artifacts - uses: actions/download-artifact@v3 + - name: Try to run Custom Docker Action (Print Fibonacci) + id: fibo + uses: https://gitea.coursow.de/Test-Playground/actions-custom-docker@master with: - name: dist-files - path: ./dist - - name: Output contents - run: ls - - name: Deploy site - run: echo 1 + iterations: 7 + - name: Show last printed Number + run: echo "Last printed Number in previous Step was ${{ steps.fibo.outputs.lastNumber }}" \ No newline at end of file