Skip to content

remove site_url

remove site_url #6

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
defaults:
run:
shell: bash
env:
CI: true
ACTIONS_RUNNER_DEBUG: true
ENVIRONMENT: "production"
BASE_URL: "https://introspect.lagon.dev"
jobs:
deploy:
name: "Deploy"
timeout-minutes: 3.69
runs-on: ["ubuntu-latest"]
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Setup Bun"
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: "Install Dependencies"
run: bun install
- name: "Setup Lagon"
uses: lagonapp/github-action@latest
with:
lagon_token: ${{ secrets.LAGON_TOKEN }}
command: deploy --production
- name: Log Function URL
run: |
url=$(grep -o 'https://[^[:space:]]*' lagon.output)
echo "Function URL: $url"