-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12ba03c
commit 65d7a57
Showing
1 changed file
with
15 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|