mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-16 09:55:04 +01:00
Create blank.yml
This commit is contained in:
parent
93b0624642
commit
baf68e94e9
1 changed files with 23 additions and 0 deletions
23
.github/workflows/blank.yml
vendored
Normal file
23
.github/workflows/blank.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
# This is a basic workflow to help you get started with Actions
|
||||||
|
|
||||||
|
name: CI
|
||||||
|
|
||||||
|
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 }}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue