github actions job needs
-
다양한 Shell 사용하고 순차적으로 실행하기github actions 2022. 2. 13. 15:24
linux 서버 뿐만 아니라 windows 서버에서 workflow 를 실행할 수 있다. github actions shell 가이드 문서를 참고하도록 한다. python, windows shell 예제 name: Shell Commands on: - push jobs: run-shell-command: runs-on: ubuntu-latest steps: - name: python command run: | import platform print(platform.processor()) shell: python run-windows-command: runs-on: windows-latest steps: - name: Directory PowerShell run: Get-Location - name: Di..