Removed old stuff
Deployment / deploy (push) Successful in 11s

This commit is contained in:
2023-07-28 00:10:24 +02:00
parent 0300177ac9
commit 3b33d83f00
19 changed files with 0 additions and 8583 deletions
+18
View File
@@ -0,0 +1,18 @@
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 }}"