Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
QueenOfSquiggles authored Apr 7, 2024
1 parent 12ba03c commit 65d7a57
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,23 +94,27 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: start package
run: echo "Hello there!"
run: |
echo "Hello there!"
mkdir target
mkdir target/debug
mkdir target/release
- name: download files
- name: download debug files
uses: actions/[email protected]
with:
# Destination path. Supports basic tilde expansion. Defaults to $GITHUB_WORKSPACE
path: $GITHUB_WORKSPACE
path: "target/debug/"
# A glob pattern matching the artifacts that should be downloaded. Ignored if name is specified.
pattern: "*sqore*"

- name: check files
run: |
ls | grep 'sqore'
pattern: "*sqore*--debug"
- name: download release files
uses: actions/[email protected]
with:
# Destination path. Supports basic tilde expansion. Defaults to $GITHUB_WORKSPACE
path: "target/release/"
# A glob pattern matching the artifacts that should be downloaded. Ignored if name is specified.
pattern: "*sqore*--release"


# - name: Release
# uses: softprops/action-gh-release@v1
# with:
Expand Down

0 comments on commit 65d7a57

Please sign in to comment.