This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
Merge pull request #860 from blueedgetechno/dependabot/github_actions… #893
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: Build & Deploy | |
on: | |
push: | |
branches: [master] | |
workflow_dispatch: | |
permissions: | |
pages: write | |
id-token: write | |
concurrency: | |
group: pages | |
cancel-in-progress: true | |
jobs: | |
Build-Deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: npm | |
- run: | | |
npm ci | |
npm run crowdin upload | |
npm run crowdin download | |
npm run ghbuild | |
env: | |
api_token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
REACT_APP_FIREBASE_API_KEY: ${{ secrets.FIREBASE_API_KEY }} | |
REACT_APP_FIREBASE_APP_ID: ${{ secrets.FIREBASE_APP_ID }} | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: build | |
- id: deployment | |
uses: actions/deploy-pages@v4 |