Merge pull request #115 from adobe/main #74
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
# Flow for deploying the app to https://ue-remote-app.adobe.net | |
name: Deploy to https://ue-remote-app.adobe.net | |
on: | |
push: | |
branches: | |
- prod | |
paths: | |
- 'build/index.html' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Deploy to https://ue-remote-app.adobe.net | |
uses: nwtgck/[email protected] | |
with: | |
publish-dir: './build' | |
production-branch: prod | |
github-token: ${{ secrets.AUTH_TOKEN }} | |
deploy-message: "Deploy from GitHub Actions" | |
enable-pull-request-comment: false | |
enable-commit-comment: true | |
overwrites-pull-request-comment: true | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
timeout-minutes: 1 |