Skip to content

Commit

Permalink
Deploy next
Browse files Browse the repository at this point in the history
  • Loading branch information
arhtudormorar committed Nov 10, 2023
1 parent cf95468 commit 1baff8c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-integration.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: deploy-integration

on:
push:
pull_request:
branches: [tm/feature/post-message-provider-deploy-integration]
repository_dispatch:
types: deploy-integration
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/deploy-next.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: deploy-next

on:
push:
branches: [tm/feature/post-message-provider-deploy-integration]
repository_dispatch:
types: deploy-next
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Setup yarn
run: npm install -g yarn
- run: yarn install
- run: yarn build:devnet
env:
CI: false
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
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_NEXT }} --delete
- name: Slack Notification
uses: rtCamp/action-slack-notify@master
env:
SLACK_ICON_EMOJI: ':nerd_face:'
SLACK_USERNAME: ${{ secrets.AWS_S3_BUCKET_NEXT }}
SLACK_MESSAGE: ${{ secrets.AWS_S3_BUCKET_NEXT }}
SLACK_FOOTER: ''
MSG_MINIMAL: true
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const AppContent = () => {
customNetworkConfig={{
name: 'customConfig',
apiTimeout,
walletAddress: 'https://integration-wallet.multiversx.com',
walletAddress: 'https://next-wallet.multiversx.com',
walletConnectV2ProjectId
}}
dappConfig={{
Expand Down

0 comments on commit 1baff8c

Please sign in to comment.