From 969ec9aaf137a9e5ab4e84bd16dcad6c5a5516c4 Mon Sep 17 00:00:00 2001 From: Mirus Date: Fri, 2 Aug 2024 10:26:53 +0300 Subject: [PATCH] chore: migrate from firebase --- .firebaserc | 8 ----- .github/workflows/firebase-hosting-merge.yml | 36 ------------------- .../firebase-hosting-pull-request.yml | 33 ----------------- firebase.json | 10 ------ 4 files changed, 87 deletions(-) delete mode 100644 .firebaserc delete mode 100644 .github/workflows/firebase-hosting-merge.yml delete mode 100644 .github/workflows/firebase-hosting-pull-request.yml delete mode 100644 firebase.json diff --git a/.firebaserc b/.firebaserc deleted file mode 100644 index df4b17a..0000000 --- a/.firebaserc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "projects": { - "default": "re-terminal" - }, - "targets": {}, - "etags": {}, - "dataconnectEmulatorConfig": {} -} diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml deleted file mode 100644 index b126ca6..0000000 --- a/.github/workflows/firebase-hosting-merge.yml +++ /dev/null @@ -1,36 +0,0 @@ -# This file was auto-generated by the Firebase CLI -# https://github.com/firebase/firebase-tools - -name: Deploy to Firebase Hosting on merge -"on": - push: - branches: - - main -jobs: - build_and_deploy: - runs-on: ubuntu-latest - env: - HUGO_CACHEDIR: /tmp/hugo_cache - steps: - - uses: actions/checkout@v4 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 - - - name: Hugo setup - uses: peaceiris/actions-hugo@v3 - with: - # The Hugo version to download (if necessary) and use. Example: 0.58.2 - hugo-version: "0.129.0" # optional, default is latest - # Download (if necessary) and use Hugo extended version. Example: true - extended: true # optional, default is false - - - name: Build - run: hugo --config demoSite/config.toml --minify - - - uses: FirebaseExtended/action-hosting-deploy@v0 - with: - repoToken: "${{ secrets.GITHUB_TOKEN }}" - firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" - channelId: live - projectId: re-terminal diff --git a/.github/workflows/firebase-hosting-pull-request.yml b/.github/workflows/firebase-hosting-pull-request.yml deleted file mode 100644 index 1cded39..0000000 --- a/.github/workflows/firebase-hosting-pull-request.yml +++ /dev/null @@ -1,33 +0,0 @@ -# This file was auto-generated by the Firebase CLI -# https://github.com/firebase/firebase-tools - -name: Deploy to Firebase Hosting on PR -"on": pull_request -jobs: - build_and_preview: - if: "${{ github.event.pull_request.head.repo.full_name == github.repository }}" - runs-on: ubuntu-latest - env: - HUGO_CACHEDIR: /tmp/hugo_cache - steps: - - uses: actions/checkout@v4 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 - - - name: Hugo setup - uses: peaceiris/actions-hugo@v3 - with: - # The Hugo version to download (if necessary) and use. Example: 0.58.2 - hugo-version: "0.129.0" # optional, default is latestdddd - # Download (if necessary) and use Hugo extended version. Example: true - extended: true # optional, default is false - - - name: Build - run: hugo --config demoSite/config.toml --minify - - - uses: FirebaseExtended/action-hosting-deploy@v0 - with: - repoToken: "${{ secrets.GITHUB_TOKEN }}" - firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT }}" - projectId: re-terminal diff --git a/firebase.json b/firebase.json deleted file mode 100644 index e782939..0000000 --- a/firebase.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "hosting": { - "public": "public", - "ignore": [ - "firebase.json", - "**/.*", - "**/node_modules/**" - ] - } -}