Skip to content

Commit

Permalink
🔧 deploy assets on scaleway
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsouche committed Dec 18, 2024
1 parent c86c54c commit 07f4678
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/scaleway-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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_ACCESS_KEY_ID=${{ secrets.SCW_ACCESS_KEY }}
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 }}

0 comments on commit 07f4678

Please sign in to comment.