feat: add kscale.dev website link to homepage (#21) #16
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: Deploys latest code | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
id-token: write | |
contents: read | |
concurrency: | |
group: deploy | |
cancel-in-progress: true | |
jobs: | |
frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Restore cache | |
id: restore-cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
node_modules/ | |
key: deploy-${{ github.event.pull_request.base.sha || github.sha }} | |
restore-keys: | | |
deploy- | |
- name: Install Node package | |
run: | | |
npm install | |
- name: Write .env.production | |
run: | | |
echo "VITE_APP_BACKEND_URL=https://api.kscale.dev" >> .env.production | |
echo "VITE_STRIPE_PUBLISHABLE_KEY=${{ secrets.VITE_STRIPE_PUBLISHABLE_KEY }}" >> .env.production | |
- name: Build frontend | |
run: | | |
npm run build | |
- name: Configure AWS credentials | |
uses: aws-actions/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: us-east-1 | |
- name: Trigger Amplify Deploy | |
run: | | |
aws amplify start-job --app-id ${{ secrets.AMPLIFY_APP_ID }} --branch-name master --job-type RELEASE |