mirror of
https://code.forgejo.org/actions/setup-forgejo.git
synced 2024-11-24 05:11:03 -05:00
17 lines
325 B
YAML
17 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
|