Skip to content

chore: update deps #214

chore: update deps

chore: update deps #214

Workflow file for this run

name: Build & Release
on: [push]
jobs:
build:
strategy:
matrix:
node: ["20.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run Build
run: npm run build
- name: Pack and build example
if: github.ref == 'refs/heads/main'
run: |
npm pack
cd examples/vue-app
npm run install:local
npm run build
# Set the credentials from repository settings/secrets
- name: Configure AWS credentials
if: github.ref == 'refs/heads/main'
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: ${{ secrets.AWS_REGION_US }}
# Copy the files from build folder to the S3 bucket
# Upload to S3
- name: sync s3
if: github.ref == 'refs/heads/main'
uses: jakejarvis/s3-sync-action@master
env:
SOURCE_DIR: "./examples/vue-app/dist"
AWS_REGION: "us-east-1"
AWS_S3_BUCKET: "demo-solana.tor.us"
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# Invalidate Cloudfront (this action)
- name: invalidate
if: github.ref == 'refs/heads/main'
uses: chetan/invalidate-cloudfront-action@master
env:
DISTRIBUTION: ${{ secrets.AWS_CLOUDFRONT_DISTRIBUTION_ID }}
PATHS: "/*"
AWS_REGION: ${{ secrets.AWS_REGION_US }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}