upload_to_gcs: fix cp without -r
#2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This action is for playing around with GHA and has no use outside of that. | |
name: main | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
tail_and_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Start tailing file | |
run: tail -f /etc/issue >/dev/null 2>&1 & | |
- name: Print processes | |
run: ps aux |