lifehackerhansol 3 weeks ago committed by GitHub
commit 2ea77ccbe4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,31 @@
name: Deploy site
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
deploy:
environment:
name: github-pages
url: $
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Setup deployment
run: |
mkdir _site
cp -r docs translations index.html _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
Loading…
Cancel
Save