Merge pull request #994 from multiversx/tutorial-cleanup-part2 #657
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: deploy-staging | |
on: | |
push: | |
branches: [development] | |
repository_dispatch: | |
types: deploy-staging | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: development | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
- name: Install packages | |
run: npm install | |
- name: Build website | |
run: npm run build | |
env: | |
CI: false | |
REACT_APP_ALGOLIA_SEARCH_KEY: ${{ secrets.ALGOLIA_SEARCH_KEY }} | |
REACT_APP_ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: "us-east-1" | |
- name: Deploy to S3 bucket | |
run: aws s3 sync ./build/ s3://${{ secrets.AWS_S3_BUCKET_STAGING }} --delete | |
- name: Slack Notification | |
uses: rtCamp/action-slack-notify@master | |
env: | |
SLACK_ICON_EMOJI: ":page_with_curl:" | |
SLACK_USERNAME: staging-docs.multiversx.com | |
SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_STAGING }} | |
SLACK_FOOTER: "" | |
MSG_MINIMAL: true | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |