Update Rust crate glob to v0.3.2 #2177
Workflow file for this run
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
name: Release | |
on: [push] | |
env: | |
GH_TOKEN: "${{ secrets.GH_TOKEN }}" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
name: Release Train WooohWoooohh | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" | |
steps: | |
# Check out the repository | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: "${{ secrets.GH_TOKEN }}" | |
# 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: | |
path: | | |
target/release | |
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/auto@v1.5.0 | |
with: | |
token: ${{ secrets.GH_TOKEN }} |