From 0891bcaafc44c7f901af93365e73cf6fbc22ba9b Mon Sep 17 00:00:00 2001 From: Evan Pitstick Date: Fri, 4 Mar 2022 22:38:56 -0500 Subject: [PATCH] new release test --- .github/workflows/checks.yaml | 12 ++++++------ .github/workflows/create.yaml | 18 +++++++++++------- 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 5af2fd8..d12d805 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -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: diff --git a/.github/workflows/create.yaml b/.github/workflows/create.yaml index 861ac9c..5723f91 100644 --- a/.github/workflows/create.yaml +++ b/.github/workflows/create.yaml @@ -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 }}.