-
Continue on Error & Timeoutgithub actions 2022. 3. 6. 22:01
특정 step 에서 에러가 발생하더라도, continue-on-error 를 사용해 해당 에러를 무시하고 다음 step 으로 진행할 수 있도록 해 보자. 참고로 github actions functions, if key and job status 에서처럼 if: failure() 를 사용하면 해당 step 만 실패일 경우 실행된다.그리고 step 마다 timeout-minutes 를 사용해 timeout 을 설정할 수도 있다.
jobs: run-shell-command: runs-on: ubuntu-latest timeout-minutes: 360 steps: - name: echo a string run: echo "Hello World" continue-on-error: true - name: ...
'github actions' 카테고리의 다른 글
Matrix 를 이용해 다양한 환경을 한번에 실행하기 (0) 2022.03.07 여러 node 버전을 동시에 사용하기 (0) 2022.03.07 github actions functions, if key and job status (0) 2022.03.04 github actions expressions & contexts (0) 2022.03.04 파일 암호화 하기 (0) 2022.03.04