Merge pull request #71 from AElfProject/feat/update-version #15
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: Deploy to S3 | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'development' }} | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
- run: bun install | |
- name: create env file | |
run: | | |
echo VITE_GOOGLE_ANALYTICS_ID=${{ vars.VITE_GOOGLE_ANALYTICS_ID }} >> .env | |
echo VITE_FAUCET_API_URL=${{ vars.VITE_FAUCET_API_URL }} >> .env | |
echo VITE_GOOGLE_CAPTCHA_SITEKEY=${{ vars.VITE_GOOGLE_CAPTCHA_SITEKEY }} >> .env | |
- run: bun run build | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ap-northeast-1 | |
- name: Sync to S3 | |
run: aws s3 sync ./dist s3://${{ secrets.AWS_S3_BUCKET }} |