mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-14 17:05:05 +01:00
24 lines
437 B
YAML
24 lines
437 B
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: testing out
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
job1:
|
|
outputs:
|
|
uwu: ${{ steps.fun.outputs.uwu }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: echo owo
|
|
id: fun
|
|
run: echo owo
|
|
job2:
|
|
needs: [job1]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Echo other output
|
|
run: test owo = ${{ needs.job1.outputs.uwu }}
|