Skip to content

Fixed missing "u"

Fixed missing "u" #105

Workflow file for this run

name: Deploy to Preview Channel
'on':
pull_request:
branches:
- preview
jobs:
build_and_preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Docusaurus site
run: |
cd src
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_TWENTYONEPILOTS_WIKI }}"
projectId: 'twentyonepilots-wiki'
target: 'preview'
expires: 14d