-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A canary build contains artifacts built from the HEAD of the default branch (`main`). Add a GitHub Actions workflow to release canary builds to GitHub Releases.
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: "Reproducible (r10e) r10edocker binaries canary builds" | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
jobs: | ||
release-r10e-binaries: | ||
name: "Release r10e r10edocker" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout code" | ||
uses: actions/checkout@v3 | ||
|
||
- name: "Build r10e apps at HEAD of default branch" | ||
run: | | ||
set -euxo pipefail | ||
cd ${{ github.workspace }} | ||
make r10e-build | ||
- name: "Release versioned" | ||
# v1.11.1 | ||
uses: ncipollo/release-action@4c75f0f2e4ae5f3c807cf0904605408e319dcaac | ||
with: | ||
tag: "canary" | ||
name: "Canary" | ||
allowUpdates: true | ||
generateReleaseNotes: false | ||
artifacts: "r10e-build/*" | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters