Skip to content

Mosibi is learning GitHub Actions #8

Mosibi is learning GitHub Actions

Mosibi is learning GitHub Actions #8

---
name: environment-test
run-name: ${{ github.actor }} is learning GitHub Actions
on: [push]
env:
YAML_UPDATED: false
jobs:
envtester:
runs-on: ubuntu-latest
steps:
- name: One
run: echo "YAML_UPDATED is $YAML_UPDATED"
- name: Show envs 1
run: echo "${{ env }}"
- name: Run script
run: |
pwd
find $(pwd)
find /home/runner
- name: Show envs 2
run: echo "${{ env }}"