ACTIONS_RUNNER_DEBUG
-
First Simple Workflowgithub actions 2022. 2. 13. 14:44
workflow 파일 생성 ./github/workflows/simple.yml git clone https://github.com/windbird123/github-actions-test.git vi github-actions-test/.github/workflows/simple.yml name: Shell Commands on: - push jobs: run-shell-command: runs-on: ubuntu-latest steps: - name: echo a string run: echo "Hello World" - name: multiline script run: | node -v npm -v 코드 PUSH source code 뿐만 아니라 위의 simple.yml 파일을 PUSH 하게되면 g..