-
Notifications
You must be signed in to change notification settings - Fork 219
87 lines (84 loc) · 2.85 KB
/
changesets_release.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
name: Changesets
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
changesets:
name: Make a PR or publish
runs-on: ubuntu-latest
outputs:
published: ${{ steps.changesets.outputs.published }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".tool-versions"
cache: pnpm
- uses: erlef/setup-beam@v1
with:
version-type: strict
version-file: ".tool-versions"
- run: pnpm install --frozen-lockfile
- run: pnpm -r build
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
version: pnpm ci:version
publish: pnpm ci:publish
title: "chore: publish new package versions"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
- name: Add latest tag to published packages
if: steps.changesets.outputs.published == 'true'
run: node scripts/tag-latest.mjs
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
update-cloud:
name: Update Electric version used by Cloud
runs-on: ubuntu-latest
needs: changesets
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
# Get the Electric version of the Docker image
- name: Get Electric version
if: needs.changesets.outputs.published == 'true'
id: sync_version
run: |
VERSION=$(jq -r '.version' packages/sync-service/package.json)
echo "version=${VERSION}" >> $GITHUB_OUTPUT
- name: Trigger cloud update (on release)
uses: peter-evans/repository-dispatch@v2
if: needs.changesets.outputs.published == 'true'
with:
token: ${{ secrets.CROSSREPO_PAT }}
repository: electric-sql/stratovolt
event-type: update-electric
client-payload: |
{
"electric_commit_sha": "${{ github.sha }}",
"electric_docker_version": "${{ steps.sync_version.outputs.version }}"
}
# On commit, only update the commit SHA, not the Docker image version
- name: Trigger cloud update (on commit)
uses: peter-evans/repository-dispatch@v2
if: needs.changesets.outputs.published != 'true'
with:
token: ${{ secrets.CROSSREPO_PAT }}
repository: electric-sql/stratovolt
event-type: update-electric
client-payload: |
{
"electric_commit_sha": "${{ github.sha }}"
}