-
-
Notifications
You must be signed in to change notification settings - Fork 422
Add task to collect proto files and add steps to release them with tester, nightly and stable builds #1931
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add task to collect proto files and add steps to release them with tester, nightly and stable builds #1931
Changes from 5 commits
ce44ee4
d79ec48
0c44da8
ee09913
32c1c30
bbb662a
ab741fd
a8bd158
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -159,3 +159,35 @@ jobs: | |
with: | ||
path: ./*checksums.txt | ||
name: checksums | ||
|
||
proto-files: | ||
# Run this after checksums or the uploaded proto files zip | ||
# will make the checksum job always fail | ||
needs: | ||
- checksums | ||
- package-name-prefix | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Task | ||
uses: arduino/setup-task@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
version: 3.x | ||
|
||
- name: Collect proto files | ||
run: | | ||
PACKAGE_NAME_PREFIX=${{ needs.package-name-prefix.outputs.prefix }} | ||
export PACKAGE_NAME_PREFIX | ||
task protoc:collect | ||
|
||
- name: Upload proto files zip | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: ${{ env.DIST_DIR }}/*.zip | ||
name: rpc-protocol-files |