mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-24 05:31:00 -05:00
18 lines
325 B
YAML
18 lines
325 B
YAML
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
basic:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
|
||
|
- name: if true
|
||
|
if: true
|
||
|
id: if_true
|
||
|
run: echo 'check=good' >> $GITHUB_OUTPUT
|
||
|
- name: verify if true was run
|
||
|
run: test ${{ steps.if_true.outputs.check }} = good
|
||
|
|
||
|
- name: if false
|
||
|
if: false
|
||
|
run: false
|