18 lines
508 B
YAML
18 lines
508 B
YAML
name: Deployment
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
test:
|
|
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 }}" |