Files
actions-custom-docker/.gitea/workflows/deploy.yml
T
tom.coursow 1e609d967c
Deployment / deploy (push) Failing after 27s
.gitea/workflows/deploy.yml aktualisiert
2023-07-27 22:29:12 +02:00

18 lines
508 B
YAML

name: Deployment
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Get code
uses: actions/checkout@v3
- name: Try to run Custom Docker Action (Print Fibonacci)
id: fibo
uses: https://gitea.coursow.de/Test-Playground/actions-custom-docker@master
with:
iterations: 7
- name: Show last printed Number
run: echo "Last printed Number in previous Step was ${{ steps.fibo.outputs.lastNumber }}"