Update README.md #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dev front deploy | |
on: | |
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: 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://www.hapuruna.info |