Skip to content

update internet check url #7

update internet check url

update internet check url #7

Workflow file for this run

# .github/workflows/deploy-main.yaml
name: Build and Deploy Main Branch
on:
push:
branches: [main]
permissions:
pages: write
id-token: write
jobs:
build:
uses: ./.github/workflows/reusable-build.yaml
# This job gets the environment URL and triggers the build
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4