Skip to content

Commit

Permalink
deploy: github actions secret key
Browse files Browse the repository at this point in the history
  • Loading branch information
junyeokk committed May 13, 2024
1 parent e834cf3 commit 0363017
Showing 1 changed file with 38 additions and 32 deletions.
70 changes: 38 additions & 32 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,42 @@
name: dev front deploy
on:
push:
branches:
- dev
pull_request:
branches:
- dev
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code.
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 22

- name: Install dependencies
run: npm install

- name: Generate build
run: npm run build

- name: Configure AWS credentials
uses: aws-action/configure-aws-credentials@v1
with:
aws-access-key-id: ${{secrets.AWS_ACCESS_KEY_ID}}
aws-secret-access-key: ${{secrets.AWS_SECRET_ACCESS_KEY}}
aws-region: ap-northeast-2
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code.
uses: actions/checkout@v3

- name: Uploasd to S3
run: aws s3 cp --recursive --region ap-northeast-2 dist
s3://knufest2024
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 22

- name: Install dependencies
run: npm install

- name: Generate build
run: npm run build

- name: Create env file
run: |
touch .env
echo VITE_GOOGLE_ANALYTICS=${{ secrets.VITE_GOOGLE_ANALYTICS }} >> .env
cat .env
- name: Configure AWS credentials
uses: aws-action/configure-aws-credentials@v1
with:
aws-access-key-id: ${{secrets.AWS_ACCESS_KEY_ID}}
aws-secret-access-key: ${{secrets.AWS_SECRET_ACCESS_KEY}}
aws-region: ap-northeast-2

- name: Uploasd to S3
run: aws s3 cp --recursive --region ap-northeast-2 dist
s3://knufest2024

0 comments on commit 0363017

Please sign in to comment.