-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Maintenance July 30th, 2024 * commented pipeline * commented pipeline * fix quoting
- Loading branch information
Showing
14 changed files
with
332 additions
and
254 deletions.
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
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
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
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 |
---|---|---|
|
@@ -15,17 +15,19 @@ jobs: | |
runs-on: ubuntu-latest | ||
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" | ||
steps: | ||
- uses: actions/checkout@v4 # v4 | ||
# Check out the repository | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.GH_TOKEN }} | ||
|
||
- name: Setup | Rust | Nightly | ||
# Set up Rust with the stable toolchain | ||
- name: Setup | Rust | Stable | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: stable | ||
components: clippy rustfmt | ||
|
||
# Cache Cargo build files to speed up builds | ||
- uses: actions/cache@v4 | ||
name: Cache Cargo Files | ||
with: | ||
|
@@ -34,14 +36,17 @@ jobs: | |
target/debug | ||
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
# Build the project with the release profile | ||
- name: Build Release | ||
run: make release PROFILE=production | ||
|
||
# Create a ZIP archive of the release binaries | ||
- uses: vimtor/action-zip@v1 | ||
with: | ||
files: target/release/odin target/release/huginn | ||
dest: tmp/bundle.zip | ||
|
||
# Use the Auto Release Tool by Intuit | ||
- name: Auto Release Tool by Intuit | ||
uses: mbround18/[email protected] | ||
with: | ||
|
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
Oops, something went wrong.