-
Notifications
You must be signed in to change notification settings - Fork 71
26 lines (23 loc) · 1 KB
/
scaleway-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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_ACCESS_KEY_ID=${{ secrets.SCW_ACCESS_KEY }} AWS_SECRET_ACCESS_KEY=${{ secrets.SCW_SECRET_KEY }} aws s3 cp public s3://${{ vars.BUCKET_NAME }}/model/${{ github.event.pull_request.number }} --recursive --endpoint-url ${{ vars.BUCKET_ENDPOINT }}