@@ -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 }}"
|
||||
Reference in New Issue
Block a user