forked from marimo-team/marimo
-
Notifications
You must be signed in to change notification settings - Fork 0
152 lines (129 loc) · 4.78 KB
/
release-dev.yml
File metadata and controls
152 lines (129 loc) · 4.78 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
name: Publish dev release
on:
workflow_call:
outputs:
marimo_version:
description: "The dev version that was built"
value: ${{ jobs.publish_dev_release.outputs.marimo_version }}
permissions:
contents: read
env:
TURBO_TEAM: marimo
UV_EXCLUDE_NEWER: "7 days"
jobs:
publish_dev_release:
name: 📤 Build dev release
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
shell: bash
outputs:
marimo_version: ${{ steps.get_version.outputs.marimo_version }}
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
# get tag history for version number
fetch-depth: 0
- name: 📦 Build frontend
uses: ./.github/actions/build-frontend
with:
turbo-token: ${{ secrets.TURBO_TOKEN }}
codecov-token: ${{ secrets.CODECOV_TOKEN }}
- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
# patch pyproject.toml version to be of the form
# X.Y.<Z+1>-dev{n-commits-since-last-tag}
- name: 🔨 Patch version number
id: get_version
run: |
# Get the version number and increment patch
# - assumes version is on a line of the form __version__ == "x.y.z"
incremented_version=`uv version --short | awk -F. '{printf "%d.%d.%d", $1, $2, $3+1}'`
# Get the number of commits since last tag
n_commits=`git rev-list $(git describe --tags --abbrev=0)..HEAD --count`
# Form the new version, which is one patch ahead of the last version
# so installing from Test PyPI does the right thing
MARIMO_VERSION="${incremented_version}-dev${n_commits}"
# Set the version in the environment for later steps
echo "MARIMO_VERSION=$MARIMO_VERSION" >> $GITHUB_ENV
echo "marimo_version=$MARIMO_VERSION" >> $GITHUB_OUTPUT
uv version "$MARIMO_VERSION"
env:
NO_COLOR: 1
- name: 📦 Build marimo
run: uv build
- name: 📦 Upload marimo dist artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
with:
name: pypi-marimo-dev
path: dist/
retention-days: 1
- name: Clean output dir
run: rm -rf dist
- name: Adapt pyproject.toml to build marimo-base
run: uv run ./scripts/modify_pyproject_for_marimo_base.py
- name: 📦 Build marimo-base
run: uv build
- name: 📦 Validate wheel under 2mb
run: ./scripts/validate_base_wheel_size.sh
- name: 📦 Upload marimo-base dist artifact
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
with:
name: pypi-marimo-base-dev
path: dist/
retention-days: 1
- name: 📦 Update package.json version from CLI
working-directory: frontend
run: |
echo "Updating package.json version to ${{ env.MARIMO_VERSION }}"
npm version ${{ env.MARIMO_VERSION }} --no-git-tag-version
- name: 📦 Upload frontend artifact for npm publish
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
with:
name: frontend-dev
path: frontend/
retention-days: 1
- name: 📦 Update package.json name to @marimo-team/islands
working-directory: frontend
run: |
sed -i 's/"name": "@marimo-team\/frontend"/"name": "@marimo-team\/islands"/' package.json
- name: 📦 Rebuild frontend for islands
working-directory: frontend
env:
NODE_ENV: production
VITE_MARIMO_ISLANDS: 'true'
VITE_MARIMO_VERSION: ${{ env.MARIMO_VERSION }}
run: |
pnpm turbo build:islands
./islands/validate.sh
- name: 📦 Upload islands artifact for npm publish
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
with:
name: frontend-islands-dev
path: frontend/
retention-days: 1
publish_wasm_dev:
name: 📤 Publish @marimo-team/frontend to npm
needs: publish_dev_release
uses: ./.github/workflows/publish-npm.yml
with:
package-artifact-name: frontend-dev
working-directory: '.'
npm-tag: 'dev'
permissions:
id-token: write # Required for OIDC
contents: read
publish_islands_dev:
name: 📤 Publish @marimo-team/islands to npm
needs: publish_dev_release
uses: ./.github/workflows/publish-npm.yml
with:
package-artifact-name: frontend-islands-dev
working-directory: '.'
npm-tag: 'dev'
permissions:
id-token: write # Required for OIDC
contents: read