-
Notifications
You must be signed in to change notification settings - Fork 158
44 lines (37 loc) · 1.12 KB
/
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
name: Release
on:
schedule:
# 2 AM on Sunday
- cron: "0 2 * * 0"
workflow_dispatch:
# we do not want more than one release workflow executing at the same time, ever
concurrency:
group: release
# cancelling in the middle of a release would create incomplete releases
# so cancel-in-progress is false
cancel-in-progress: false
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'substrait-io/substrait'
steps:
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ steps.generate-token.outputs.token }}
- uses: actions/setup-node@v4
with:
node-version: "20"
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
- name: run semantic-release
run: ./ci/release/run.sh
env:
BUF_TOKEN: ${{ secrets.BUF_TOKEN }}
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}