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