Create deploy.yml

This commit is contained in:
iko 2023-02-14 12:24:09 +00:00 committed by GitHub
parent a750b36634
commit 83736adc61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

44
.github/workflows/deploy.yml vendored Normal file
View File

@ -0,0 +1,44 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# 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 one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v19
- name: build
run: nix run "github:NixOS/nixpkgs?rev=35fc22e24879ca191403a923ea7f520593621a7d#elmPackages.elm-pages" -- build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1