Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
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

51 changes: 0 additions & 51 deletions .github/workflows/jekyll-gh-pages.yml

This file was deleted.

21 changes: 3 additions & 18 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,8 @@
Gemfile.lock
_drafts/
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
node_modules/
dist/
.astro/
.DS_Store
.bundle/
vendor/
*.swp
*.swo
*.bkp
TODO.txt

_site
node_modules
.sass-cache
*.gem
Gemfile.lock
*.gem
assets/**/*.html
assets/**/*.md

5 changes: 0 additions & 5 deletions Gemfile

This file was deleted.

19 changes: 0 additions & 19 deletions _config.yml

This file was deleted.

8 changes: 0 additions & 8 deletions _includes/head-custom.html

This file was deleted.

160 changes: 0 additions & 160 deletions _layouts/default.html

This file was deleted.

4 changes: 0 additions & 4 deletions _layouts/home.html

This file was deleted.

4 changes: 0 additions & 4 deletions _layouts/page.html

This file was deleted.

4 changes: 0 additions & 4 deletions _layouts/post.html

This file was deleted.

7 changes: 0 additions & 7 deletions _sass/jekyll-theme-primer.scss

This file was deleted.

5 changes: 0 additions & 5 deletions _sass/primer-base/index.scss

This file was deleted.

Loading
Loading