Skip to content

Commit

Permalink
Adds workflow to deploy to GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
DougReeder committed Feb 3, 2024
1 parent 1f97e98 commit 3bedccf
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 3 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the beta-testing branch
push:
branches: ["beta"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run vite & rollup
run: npm run build -- --base=/${{ github.event.repository.name }}/
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload distribution directory
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
name="description"
content="Free your mind from mundane details! Toss in text, pictures, links and files Shared from native apps. Be confident you can find any note on any device. Take control of your data with remoteStorage. Never spend time tidying up — unless you want to!"
/>
<link rel="icon" href="/generated-icons/favicon.ico" sizes="any">
<link rel="icon" href="/generated-icons/favicon.ico" type="image/vnd.microsoft.icon" sizes="any">
<link rel="icon" href="/generated-icons/NotesTogether-Icon.svg" type="image/svg+xml" sizes="any">
<link rel="apple-touch-icon" href="/icons/NotesTogether-Icon-1024x1024.png" sizes="4270x4270" />
<link rel="apple-touch-icon" href="/generated-icons/apple-touch-icon-180x180.png" sizes="180x180">
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="apple-touch-icon" href="/generated-icons/apple-touch-icon-180x180.png" type="image/png" sizes="180x180">
<title>%VITE_APP_TITLE%</title> <!-- overridden by useEffect in App.jsx -->
</head>
<body>
Expand Down

0 comments on commit 3bedccf

Please sign in to comment.