You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Compare Apps Script source with extension fallback
30
+
run: |
31
+
if ! cmp -s assets/apps_script/Code.gs chrome-extension/Code.gs; then
32
+
echo "::error file=chrome-extension/Code.gs::chrome-extension/Code.gs must match assets/apps_script/Code.gs. Update the bundled fallback whenever the canonical Apps Script changes."
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,23 @@ permissions:
46
46
# and more importantly keeps target/ warm via the rust-cache action.
47
47
48
48
jobs:
49
+
verify-chrome-extension-codegs-sync:
50
+
name: verify chrome-extension Code.gs sync
51
+
runs-on: ubuntu-latest
52
+
steps:
53
+
- name: Check out repository
54
+
uses: actions/checkout@v4
55
+
56
+
- name: Compare Apps Script source with extension fallback
57
+
run: |
58
+
if ! cmp -s assets/apps_script/Code.gs chrome-extension/Code.gs; then
59
+
echo "::error file=chrome-extension/Code.gs::chrome-extension/Code.gs must match assets/apps_script/Code.gs. Update the bundled fallback whenever the canonical Apps Script changes."
0 commit comments