Skip to content

🔧 deploy assets on scaleway #7

🔧 deploy assets on scaleway

🔧 deploy assets on scaleway #7

Workflow file for this run

name: Deploy to Scaleway
on:
pull_request:
branches: [preprod]
jobs:
deploy:
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: 18
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run compile script
run: yarn compile
- name: Upload to Scaleway bucket
run: |
aws configure set aws-access-key-id ${{ secrets.SCW_ACCESS_KEY }}
aws configure set aws-secret-access-key ${{ secrets.SCW_SECRET_KEY }}
aws s3 rm s3://${{ vars.BUCKET_NAME }}/model/${{ github.event.pull_request.number }} --recursive --endpoint-url ${{ vars.BUCKET_ENDPOINT }}
aws s3 cp public s3://${{ vars.BUCKET_NAME }}/model/${{ github.event.pull_request.number }} --recursive --endpoint-url ${{ vars.BUCKET_ENDPOINT }}