-
Notifications
You must be signed in to change notification settings - Fork 58
51 lines (39 loc) · 954 Bytes
/
Copy paththeme-showcase.yml
File metadata and controls
51 lines (39 loc) · 954 Bytes
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
46
47
48
49
50
51
name: Upload theme showcase
permissions:
contents: read
on:
push:
branches:
- master
paths:
- '.github/workflows/theme-showcase.yml'
- 'crates/wastebin_theme_showcase/**'
- 'crates/wastebin_highlight/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@1.95.0
- name: Build
run: |
mkdir _site
cargo run --bin wastebin-theme-showcase > _site/index.html
- name: Upload
id: deployment
uses: actions/upload-pages-artifact@v4
deploy:
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4