Skip to content

Commit

Permalink
ci: Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte authored Nov 15, 2024
1 parent 4932ee3 commit 15a2abf
Showing 1 changed file with 52 additions and 43 deletions.
95 changes: 52 additions & 43 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,58 +1,67 @@
name: S3 deploy
name: Deploy



on:

push:
branches: ['main'] # main으로 push되었을 때 실행
env:
AWS_REGION: ap-northeast-2
S3_BUCKET_NAME: mulmung
permissions:
contents: read

branches: ['main']



jobs:
deploy:
name: Deploy

build:

runs-on: ubuntu-latest

container: pandoc/latex

steps:
- name: Checkout source code.
uses: actions/checkout@master

- name: Cache node modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- uses: actions/checkout@v3



- name: Install mustache (to update the date)

run: apk add ruby && gem install mustache


- name: Install pnpm # package manager 설치
run: |
npm install -g pnpm

- name: Create .env file # 환경변수 넣기
run: |
echo "VITE_APP_BASE_URL=${{ secrets.VITE_APP_BASE_URL }}" >> .env
- name: creates output

- name: Install Dependencies
run: pnpm install --no-frozen-lockfile --force
run: sh ./build.sh

- name: Lint Code # ESLint 실행하기
run: pnpm lint

- name: Build # Build 실행하기
run: CI='' pnpm run build

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
- name: Pushes to another repository

id: push_directory

uses: cpina/github-action-push-to-another-repository@main

env:

API_TOKEN_GITHUB: ${{ secrets.AUTO_ACTIONS }}

with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ env.AWS_REGION }}

- name: Upload to AWS S3
run: |
aws s3 cp \
--recursive \
--region ap-northeast-2 \
./dist s3://${{env.S3_BUCKET_NAME}}

source-directory: 'output'

destination-github-username: gogumalatte

destination-repository-name: gdgline-FE

user-email: ${{ secrets.EMAIL }}

commit-message: ${{ github.event.commits[0].message }}

target-branch: main



- name: Test get variable exported by push-to-another-repository

run: echo $DESTINATION_CLONED_DIRECTORY

0 comments on commit 15a2abf

Please sign in to comment.