mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-14 09:05:00 +01:00
23 lines
409 B
YAML
23 lines
409 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: uwu
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Run a one-line script
|
|
run: echo Ran job1
|
|
job2:
|
|
needs: [job1]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Echo other output
|
|
run: echo ${{ needs.job1.outputs.uwuw }}
|