Skip to content

Commit

Permalink
Merge branch 'develop' of oldalbus:Nebula-DEX/frontend-monorepo into …
Browse files Browse the repository at this point in the history
…develop
  • Loading branch information
oldalbus committed Sep 17, 2024
2 parents bd580b1 + 871243a commit 8722d95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-nebula-production.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
key: ${{ secrets.FRONTEND_DEPLOYMENT_SSH_KEY }}
script: |
sudo rm -rf /var/www/explorer || echo;
sudo ln -s /var/www/explorer-dist/${{ needs.publish_dist.RELEASE_VERSION }} /var/www/explorer;
sudo ln -s /var/www/explorer-dist/${{ needs.publish_dist.outputs.RELEASE_VERSION }} /var/www/explorer;
- name: Enable published console
if: ${{ contains(github.ref_name, 'trading') || contains(github.ref_name, 'console') || contains(github.ref_name, 'all') }}
Expand All @@ -169,7 +169,7 @@ jobs:
key: ${{ secrets.FRONTEND_DEPLOYMENT_SSH_KEY }}
script: |
sudo rm -rf /var/www/trading || echo;
sudo ln -s /var/www/trading-dist/${{ needs.publish_dist.RELEASE_VERSION }} /var/www/trading;
sudo ln -s /var/www/trading-dist/${{ needs.publish_dist.outputs.RELEASE_VERSION }} /var/www/trading;
- name: Enable published governance
if: ${{ contains(github.ref_name, 'governance') || contains(github.ref_name, 'all') }}
Expand All @@ -180,4 +180,4 @@ jobs:
key: ${{ secrets.FRONTEND_DEPLOYMENT_SSH_KEY }}
script: |
sudo rm -rf /var/www/governance || echo;
sudo ln -s /var/www/governance-dist/${{ needs.publish_dist.RELEASE_VERSION }} /var/www/governance;
sudo ln -s /var/www/governance-dist/${{ needs.publish_dist.outputs.RELEASE_VERSION }} /var/www/governance;

0 comments on commit 8722d95

Please sign in to comment.