Skip to content

Commit

Permalink
Update rust.dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom60chat authored Nov 20, 2023
1 parent 3a6c547 commit b3767b3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/rust.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand All @@ -20,9 +19,13 @@ jobs:
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: pet-the-cat-gui_artifact
path: /home/runner/work/pet_the_cat_gui/pet_the_cat_gui/target/debug/pet_the_cat_gui

release:

name: Release
runs-on: ubuntu-latest
needs: build
Expand All @@ -31,7 +34,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: /home/runner/work/pet_the_cat_gui/pet_the_cat_gui/target/debug/
name: pet-the-cat-gui_artifact
- name: Test artifact download
run: ls -R

0 comments on commit b3767b3

Please sign in to comment.