Skip to content

Commit

Permalink
CI/CD 깃헙 환경변수 등록
Browse files Browse the repository at this point in the history
  • Loading branch information
urimJ committed Nov 25, 2023
1 parent 5c58bde commit f4bf034
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ on:
jobs:
Job1:
runs-on: ubuntu-latest
env:
DB_HOST: ${{ secrets.DB_HOST }}
DB_USER: ${{ secrets.DB_USER }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
DB_DATABASE: ${{ secrets.DB_DATABASE }}
S3_KEYID: ${{ secrets.S3_KEYID }}
S3_PRIVATEKEY: ${{ secrets.S3_PRIVATEKEY }}
S3_REGION: ${{ secrets.S3_REGION }}
BUCKET_NAME: ${{ secrets.BUCKET_NAME }}
steps:
- run: echo "내용...${{ github.repository }}"
- uses: actions/checkout@v4
Expand Down
35 changes: 35 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
"mysql": "^2.18.1",
"mysql2": "^3.6.2",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pm2": "^5.3.0",
"sequelize": "^6.33.0"
},
Expand Down

0 comments on commit f4bf034

Please sign in to comment.