568-refactor: Widget trainers #623
Workflow file for this run
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: Preview | |
on: | |
pull_request: | |
types: [labeled, synchronize] | |
branches: [main] | |
concurrency: | |
group: pr_${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
NODE_VERSION: '20.x' # set this to the node version to use | |
AWS_S3_BUCKET: 'sites-frontend' | |
AWS_ACCESS_KEY_ID: ${{ secrets.DEPLOY_AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.DEPLOY_AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: 'eu-central-1' | |
jobs: | |
build-rolling-scopes: | |
name: Build rollingscopes.com | |
if: ${{ github.event.label.name == 'preview' || contains(github.event.pull_request.labels.*.name, 'preview') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Build | |
env: | |
HOST: 'https://pr${{ github.event.pull_request.number }}.rollingscopes.com' | |
RS_SCHOOL_HOST: 'https://pr${{ github.event.pull_request.number }}.rs.school' | |
run: | | |
npm ci | |
npm run build | |
- uses: jakejarvis/s3-sync-action@master | |
with: | |
args: --cache-control max-age=300 | |
env: | |
SOURCE_DIR: 'build' | |
DEST_DIR: rolling-scopes-com-preview/pr${{ github.event.pull_request.number }} | |
build-rs-school: | |
name: Build rs.school | |
if: ${{ github.event.label.name == 'preview' || contains(github.event.pull_request.labels.*.name, 'preview') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Build | |
env: | |
HOST: 'https://rs.school' | |
run: | | |
npm ci | |
npm run build | |
- uses: jakejarvis/s3-sync-action@master | |
name: Sync to S3 | |
with: | |
args: --cache-control max-age=300 | |
env: | |
SOURCE_DIR: 'build' | |
DEST_DIR: rs-school-preview/pr${{ github.event.pull_request.number }} | |
create-preview: | |
name: Create Preview | |
runs-on: ubuntu-latest | |
needs: [build-rs-school, build-rolling-scopes] | |
steps: | |
- name: Trigger Preview Deployment | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
repository: rolling-scopes/rsschool-infra | |
event-type: create-preview | |
client-payload: | | |
{ | |
"number": ${{ github.event.pull_request.number }}, | |
"ref": "${{ github.event.pull_request.head.ref }}", | |
"previewId": "pr${{ github.event.pull_request.number }}" | |
} | |
- name: Set deployment status | |
uses: apalchys/[email protected] | |
id: deployment | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
pr: true | |
pr_id: ${{ github.event.pull_request.number }} | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
environment: pr${{ github.event.pull_request.number }} | |
initial_status: in_progress |