Itsacoyote devrl 508 prosea styling of arrow icon (#33) #32
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 staging 🏗️" | |
on: | |
push: | |
branches: [staging] | |
jobs: | |
build_and_deploy: | |
env: | |
NUXT_UI_PRO_LICENSE: ${{ secrets.NUXT_UI_PRO_LICENSE }} | |
NUXT_PUBLIC_SITE_URL: ${{ secrets.NUXT_PUBLIC_SITE_URL }} | |
if: ${{ github.event.repository.full_name == github.repository }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 # v4 | |
with: | |
ref: "${{ github.event.inputs.ref }}" | |
- uses: oven-sh/setup-bun@v1 | |
- name: "Install dependencies" | |
run: bun install | |
- name: "Deploy target: staging" | |
run: bun run generate | |
- uses: matter-labs/action-hosting-deploy@main | |
with: | |
repoToken: "${{ secrets.GITHUB_TOKEN }}" | |
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_ZKSYNC_DOCS_STAGING_5EB09 }}" | |
projectId: zksync-docs-staging-5eb09 | |
channelId: live |