-
-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (49 loc) · 1.38 KB
/
on-main-push.yml
File metadata and controls
57 lines (49 loc) · 1.38 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
---
name: Main
on:
push:
branches:
- main
paths-ignore:
- "**.md"
jobs:
build:
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
prepare-release:
needs: [build]
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
prs_created: ${{ steps.release.outputs.prs_created }}
version: ${{ steps.release.outputs.version }}
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.RELEASE_PAT }}
release-type: node
release:
needs: [prepare-release]
runs-on: ubuntu-latest
if: ${{ needs.prepare-release.outputs.release_created == 'true' }}
steps:
- name: Checkout sources
uses: actions/checkout@v5
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- name: Setup dependencies, cache and install
uses: ./.github/actions/install
- name: Publish to npm
run: npm publish --access public --tag latest-rc
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
test-release:
uses: ./.github/workflows/run-e2e-tests.yml
needs: [prepare-release, release]
with:
channel: ${{ needs.prepare-release.outputs.version }}
secrets: inherit