forked from microsoft/pxt-calliope
-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (99 loc) · 3.32 KB
/
tauri.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: Publish static releases
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Sync node version and setup cache
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm' # Set this to npm, yarn or pnpm.
- name: Install dependencies
run: |
sudo npm install -g pxt
npm ci
- name: Built staticpkg
run: |
pxt staticpkg --route /
- name: Copy static files
run: |
mkdir -p /built/packaged/static/
cp -r /built/packaged/docs/static/. /built/packaged/static/
- name: Update Tauri version in tauri.conf.json
run: |
# Extract semver version (remove leading v and limit to 3 version numbers)
VERSION=$(echo "${{ github.ref_name }}" | sed 's/v//; s/^\([0-9]\+\.[0-9]\+\.[0-9]\+\).*$/\1/')
# Update tauri.conf.json with the new version
sed -i "s#\"version\": \".*\"#\"version\": \"$VERSION\"#g" src-tauri/tauri.conf.json
- name: share files with release job
uses: actions/upload-artifact@v4
with:
name: files
path: |
src-tauri/
built/packaged/
package.json
package-lock.json
retention-days: 1
deploy:
needs: build
runs-on: ubuntu-20.04
permissions:
contents: read
deployments: write
name: Deploy to Cloudflare Pages
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Install wrangler
run: |
npm install wrangler --save-dev
- name: Publish
uses: cloudflare/pages-action@1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: pxt-calliope
directory: files/built/packaged
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
release:
needs: build
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev librsvg2-dev
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'
- name: Build the app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
releaseName: 'MakeCode Calliope mini v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version.
releaseBody: 'See the assets to download and install this version.'
releaseDraft: false
prerelease: false
includeUpdaterJson: true