-
Notifications
You must be signed in to change notification settings - Fork 8
45 lines (37 loc) · 1.03 KB
/
deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build and Deploy
on:
push:
branches:
- main
schedule:
# rebuild website once an hour
- cron: '23 * * * *'
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Set Timezone
uses: szenius/[email protected]
with:
timezoneLinux: "Europe/Berlin"
- name: Checkout 🛎️
uses: actions/checkout@v3
- uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Make the build unique
run: echo "<!-- $(date +%s) -->" >> src/pages/index.astro
- uses: workflow/nix-shell-action@v3
with:
packages: bun
script: |
bun install
bun run fetch-data
bun run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist