21 lines
448 B
YAML
21 lines
448 B
YAML
on: [push]
|
|
jobs:
|
|
# test:
|
|
# runs-on: docker
|
|
# steps:
|
|
# - run: echo All good!
|
|
checkout:
|
|
runs-on: self-hosted
|
|
env:
|
|
test: value
|
|
steps:
|
|
- name: checkout
|
|
run: |
|
|
git checkout
|
|
- name: Output and update env.test
|
|
run: |
|
|
echo ${{ env.test }}
|
|
echo 'test=good' >> $FORGEJO_OUTPUT
|
|
- name: Output updated env.test?
|
|
run: |
|
|
echo ${{ env.test }}
|