chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (#2965) #903
This file contains hidden or 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 to Netlify (dev) | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| jobs: | |
| deploy-to-netlify: | |
| name: Deploy to Netlify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup node | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version-file: ".node-version" | |
| package-manager-cache: false | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build app | |
| env: | |
| NODE_OPTIONS: '--max_old_space_size=4096' | |
| run: npm run build | |
| - name: Deploy to Netlify | |
| uses: nwtgck/actions-netlify@4cbaf4c08f1a7bfa537d6113472ef4424e4eb654 # v3.0.0 | |
| with: | |
| publish-dir: dist | |
| deploy-message: 'Dev deploy ${{ github.sha }}' | |
| enable-commit-comment: false | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| production-deploy: true | |
| github-deployment-environment: nightly | |
| github-deployment-description: 'Nightly deployment on each commit to dev branch' | |
| env: | |
| NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
| NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_DEV }} | |
| timeout-minutes: 1 |