Skip to content

Commit

Permalink
new release test
Browse files Browse the repository at this point in the history
  • Loading branch information
xaocon committed Mar 5, 2022
1 parent 619ece5 commit 0891bca
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Rust Checks

on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
push:
branches:
- main
pull_request:
branches:
- main
# should add vars that can trigger release
workflow_dispatch:

Expand Down
18 changes: 11 additions & 7 deletions .github/workflows/create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,14 @@ jobs:
uses: actions/download-artifact@v2
-
name: Debug where artifacts are
run: find .
# -
# name: Publish
# uses: softprops/action-gh-release@v1
# with:
# files: kubeshim-*
# body: Release of ${{ github.ref_name }}.
run: |
mkdir release
for i in kubeshim-*; do
mv $i/kubeshim release/$i
done
-
name: Publish
uses: softprops/action-gh-release@v1
with:
files: release/*
body: Release of ${{ github.ref_name }}.

0 comments on commit 0891bca

Please sign in to comment.