Skip to content

Commit

Permalink
updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mburridge96 committed Sep 12, 2024
1 parent 745843a commit 8569ebc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
create-release:
name: Create Release

on:
push:
branches:
- main

jobs:
create-release:
runs-on: ubuntu-latest
# Use a container with GLIBC 2.17
container: quay.io/pypa/manylinux2014_x86_64
Expand All @@ -22,9 +30,9 @@ create-release:
with:
command: build
args: --release --manifest-path cli/Cargo.toml

- name: Upload binary
uses: actions/upload-artifact@4
with:
uses: actions/upload-artifact@v4
with:
name: cli-tool
path: cli

2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit 8569ebc

Please sign in to comment.