github actions docker
-
docker container 에서 step 실행하기github actions 2022. 3. 7. 11:22
문제 docker container 에서 step 이 실행되도록 workflow 를 작성한다. 내가 만든 script.sh 가 docker container 에서 실행되도록 한다. (마치 docker run ... script.sh 처럼 실행되듯) 코드 name: Container on: push jobs: docker-steps: runs-on: ubuntu-latest container: image: node:13.5.0-alpine3.10 # volumes: # ports: # options: --cpus 1 steps: - name: Default Log node version run: | node -v cat /etc/os-release - name: Step with docker uses: d..