GIT
-
Github action CI-CDGIT 2020. 10. 29. 17:53
name: CI-CD-Pipeline env: EB_PACKAGE_S3_BUCKET: "S3" EB_APPLICATION: "EB_APP" EB_ENVIRONMENT: "EB_ENV" DEPLOY_PACKAGE: "deploy_${{github.sha}}.zip" AWS_REGION: "ap-northeast-2" on: push: branch: [main] jobs: CI: runs-on: ubuntu-latest steps: - name: Git clone repository uses: actions/checkout@v1 - name: NPM Install run: npm ci - name: Build run: npm run build sms - name: Create ZIP deployment pa..