forked from tailcallhq/forgecode
-
Notifications
You must be signed in to change notification settings - Fork 0
155 lines (154 loc) · 5.46 KB
/
release.yml
File metadata and controls
155 lines (154 loc) · 5.46 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
153
154
155
# -------------------------------------------------------------------
# ------------------------------- WARNING ---------------------------
# -------------------------------------------------------------------
#
# This file was automatically generated by gh-workflows using the
# gh-workflow-gen bin. You should add and commit this file to your
# git repository. **DO NOT EDIT THIS FILE BY HAND!** Any manual changes
# will be lost if the file is regenerated.
#
# To make modifications, update your `build.rs` configuration to adjust
# the workflow description as needed, then regenerate this file to apply
# those changes.
#
# -------------------------------------------------------------------
# ----------------------------- END WARNING -------------------------
# -------------------------------------------------------------------
name: Multi Channel Release
'on':
release:
types:
- published
permissions:
contents: write
pull-requests: write
jobs:
build_release:
name: build-release
runs-on: ${{ matrix.os }}
permissions:
contents: write
pull-requests: write
strategy:
matrix:
include:
- binary_name: forge-x86_64-unknown-linux-musl
binary_path: target/x86_64-unknown-linux-musl/release/forge
cross: 'true'
os: ubuntu-latest
target: x86_64-unknown-linux-musl
- binary_name: forge-aarch64-unknown-linux-musl
binary_path: target/aarch64-unknown-linux-musl/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-unknown-linux-musl
- binary_name: forge-x86_64-unknown-linux-gnu
binary_path: target/x86_64-unknown-linux-gnu/release/forge
cross: 'false'
os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- binary_name: forge-aarch64-unknown-linux-gnu
binary_path: target/aarch64-unknown-linux-gnu/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-unknown-linux-gnu
- binary_name: forge-x86_64-apple-darwin
binary_path: target/x86_64-apple-darwin/release/forge
cross: 'false'
os: macos-latest
target: x86_64-apple-darwin
- binary_name: forge-aarch64-apple-darwin
binary_path: target/aarch64-apple-darwin/release/forge
cross: 'false'
os: macos-latest
target: aarch64-apple-darwin
- binary_name: forge-x86_64-pc-windows-msvc.exe
binary_path: target/x86_64-pc-windows-msvc/release/forge.exe
cross: 'false'
os: windows-latest
target: x86_64-pc-windows-msvc
- binary_name: forge-aarch64-pc-windows-msvc.exe
binary_path: target/aarch64-pc-windows-msvc/release/forge.exe
cross: 'false'
os: windows-latest
target: aarch64-pc-windows-msvc
- binary_name: forge-aarch64-linux-android
binary_path: target/aarch64-linux-android/release/forge
cross: 'true'
os: ubuntu-latest
target: aarch64-linux-android
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Setup Protobuf Compiler
if: ${{ matrix.cross == 'false' }}
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Cross Toolchain
if: ${{ matrix.cross == 'false' }}
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- name: Add Rust target
if: ${{ matrix.cross == 'false' }}
run: rustup target add ${{ matrix.target }}
- name: Set Rust Flags
if: '!(contains(matrix.target, ''-unknown-linux-'') || contains(matrix.target, ''-android''))'
run: echo "RUSTFLAGS=-C target-feature=+crt-static" >> $GITHUB_ENV
- name: Build Binary
uses: ClementTsang/cargo-action@v0.0.7
with:
command: build --release
args: '--target ${{ matrix.target }}'
use-cross: ${{ matrix.cross }}
cross-version: '0.2.5'
env:
RUSTFLAGS: ${{ env.RUSTFLAGS }}
POSTHOG_API_SECRET: ${{secrets.POSTHOG_API_SECRET}}
APP_VERSION: ${{ github.event.release.tag_name }}
- name: Copy Binary
run: cp ${{ matrix.binary_path }} ${{ matrix.binary_name }}
- name: Upload to Release
uses: xresloader/upload-to-github-release@v1
with:
release_id: ${{ github.event.release.id }}
file: ${{ matrix.binary_name }}
overwrite: 'true'
npm_release:
needs:
- build_release
name: npm_release
runs-on: ubuntu-latest
strategy:
matrix:
repository:
- antinomyhq/npm-code-forge
- antinomyhq/npm-forgecode
steps:
- name: Checkout Code
uses: actions/checkout@v6
with:
repository: ${{ matrix.repository }}
ref: main
token: ${{ secrets.NPM_ACCESS }}
- name: Update NPM Package
run: './update-package.sh ${{ github.event.release.tag_name }}'
env:
AUTO_PUSH: 'true'
CI: 'true'
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
homebrew_release:
needs:
- build_release
name: homebrew_release
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
with:
repository: antinomyhq/homebrew-code-forge
ref: main
token: ${{ secrets.HOMEBREW_ACCESS }}
- name: Update Homebrew Formula
run: GITHUB_TOKEN="${{ secrets.HOMEBREW_ACCESS }}" ./update-formula.sh ${{ github.event.release.tag_name }}