Skip to content

Commit

Permalink
add tree and tweak path
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Jul 22, 2024
1 parent 5ffa331 commit f379dcc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,19 @@ jobs:
- name: Build Release Binary
run: cargo build --release

- name: Tree
run: tree

- name: Upload artifact
if: startsWith(github.ref, 'refs/tags/') != true
uses: actions/upload-artifact@v4
with:
name: ansible-facts
path: ./target/release/ansible-facts
path: /home/runner/work/ansible-facts/ansible-facts/target/release/ansible-facts

- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request'
with:
files: |
./target/release/ansible-facts
/home/runner/work/ansible-facts/ansible-facts/target/release/ansible-facts

0 comments on commit f379dcc

Please sign in to comment.