mirror of
https://github.com/Noratrieb/actions-playground.git
synced 2026-01-14 17:05:05 +01:00
Update and rename blank.yml to test.yml
This commit is contained in:
parent
baf68e94e9
commit
aa41fa4535
1 changed files with 2 additions and 2 deletions
23
.github/workflows/test.yml
vendored
Normal file
23
.github/workflows/test.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue