Merge pull request #38 from EducationalTools/main #8
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: Deploy | |
on: | |
push: | |
branches: | |
- prod | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install dependencies | |
run: pnpm install && pnpm install -g firebase-tools | |
- name: Build | |
run: | | |
pnpm run build | |
- name: Deploy to repo | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
personal_token: ${{ secrets.GH_PAGES_SECRET }} | |
external_repository: EducationalTools/EducationalTools.github.io | |
publish_branch: main # default: gh-pages | |
publish_dir: ./build | |
- name: Deploy to vercel repo | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
personal_token: ${{ secrets.VERCEL_REPO_SECRET }} | |
external_repository: 'Inglan/EduTools-Vercel' | |
publish_branch: main # default: gh-pages | |
publish_dir: ./build | |
- name: Deploy to surge.sh | |
if: always() | |
uses: dswistowski/surge-sh-action@v1 | |
with: | |
domain: 'edutools.surge.sh' | |
project: './build' | |
login: ${{ secrets.SURGE_LOGIN }} | |
token: ${{ secrets.SURGE_TOKEN }} | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }} | |
channelId: live | |
projectId: edutools-d915e | |
- name: Deploy to Infinityfree | |
if: always() | |
uses: SamKirkland/[email protected] | |
with: | |
server: ftpupload.net | |
username: if0_37642311 | |
password: ${{ secrets.FTP_PASSWORD }} | |
local-dir: ./build/ | |
server-dir: /htdocs/ |