github action
-
uses 로 action 사용해 보기github actions 2022. 2. 26. 21:59
문제 https://github.com/actions/hello-world-javascript-action 에 만들어져 있는 "actions/hello-world-javascript-action" 를 사용해보자. README 문서를 보면 Input 으로 who-to-greet 를 받는다. Output 으로 time 변수에 출력시간을 저장해 준다. 코드 name: Actions Workflow on: - push jobs: run-github-actions: runs-on: ubuntu-latest steps: - name: Simple JS Action id: greet uses: actions/hello-world-javascript-action@v1.1 with: who-to-greet: windbi..