Skip to content

add single line and animation options to banner #335

add single line and animation options to banner

add single line and animation options to banner #335

Workflow file for this run

name: Build and Deploy to keepandroidopen.org
on:
push:
branches: [ main ]
workflow_dispatch:
pull_request:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages-deploy
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install, build, and upload site
uses: withastro/action@v5
#with:
# path: .
deploy:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4