-
Notifications
You must be signed in to change notification settings - Fork 0
90 lines (72 loc) · 2.02 KB
/
main.yml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: CI
on:
push:
workflow_dispatch:
concurrency:
group: "github-pages"
cancel-in-progress: false
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
name: trunk build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Rust cache
uses: Swatinem/rust-cache@v2
- name: Setup Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Setup trunk
uses: jetli/[email protected]
with:
version: 'latest'
- name: Check format
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy --all-features -- -D warnings
- name: trunk build
run: trunk build --release && ls -laR dist/
env:
TRUNK_BUILD_PUBLIC_URL: "/beercalc/"
- name: replace branch name
run: |
echo "REPL_BRANCH_NAME=${BR_NAME////_}" >> $GITHUB_ENV
env:
BR_NAME: ${{ github.head_ref || github.ref_name }}
- name: upload artifact
uses: actions/upload-artifact@v4
with:
name: dist-${{ env.REPL_BRANCH_NAME }}
path: dist/
retention-days: 1
deploy:
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Setup pages
uses: actions/configure-pages@v5
- name: replace branch name
run: |
echo "REPL_BRANCH_NAME=${BR_NAME////_}" >> $GITHUB_ENV
env:
BR_NAME: ${{ github.head_ref || github.ref_name }}
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: dist-${{ env.REPL_BRANCH_NAME }}
path: dist/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'dist'
- name: Deploy to GitHub pages
id: deployment
uses: actions/deploy-pages@v4